Illustration of Hostscreamer
Hosting
Mark Mayo

Linux Web Hosting

Linux is a complete operating system that is similar but not identical to Unix. It runs on a wide variety of hardware, ranging from Intel and AMD CPUs to more exotic hardware such as

Read More »
Illustration of Hostscreamer
Hosting
Mark Mayo

PHP, Learn Something New

If your anything like the majority of society, myself included, you could probably use a little more info on certain aspects of computers. Here, I decided to take a look at “PHP”. Yeah I

Read More »
Illustration of data flow
Programming
Mark Mayo

How to use PHP String Parser, Finding a String Between Two Strings

One of the common tasks in PHP is parsing strings, which involves manipulating and extracting information from a string. One such task is finding a string between two other strings. Here is a simple function that can be used to find a string between two other strings in PHP: function find_string_between($string, $start, $end) { $string = ” “.$string; $ini = strpos($string,$start); if ($ini == 0) return “”; $ini += strlen($start); $len =

Read More »

Pin It on Pinterest