Convert External CSS to On-Page (Inline) CSS for Emails

Richard CummingsQuick Solutions, Technologies/Solutions, Web ConsultingLeave a Comment

If you are looking to convert your CSS to on-page (or “Inline”) CSS for use in email campaigns, I will tell you how I did it. The Problem: Effective HTML in Emails Most websites now-a-days use CSS to style their web pages and, in doing so, they typically call an external style.css file. Ideally, you could then structure all of … Read More

PHP: Capture Referring URL And Truncate It To Domain Name

Richard CummingsQuick Solutions, Technologies/Solutions, Web ConsultingLeave a Comment

This is a quick technical post on how to use PHP to capture a referring URL and truncate it to a domain name. In other words, we want to determine the exact domain name from which our visitors arrived. The reasons for doing this are numerous. Many use this referring information for statistical analysis while others use it to perform … Read More

PHP String Split

Richard CummingsQuick Solutions, Technologies/SolutionsLeave a Comment

In this post, I am going to tell you how to do a PHP string split. While there use to be a PHP command called “PHP split“, it is no longer being supported so we will teach you how to do a PHP string split using the PHP explode command.