msgbartop
A cronological documentation test project, nothing serious, really!
msgbarbottom

16 Apr 2007 Script to parse file content from one file to another

This is a PHP script that parse file content from a file and writes this to another config file.
(more…)

Tags: ,

Posted by

04 Apr 2007 Remove blank / empty lines

function removeEmptyLines($string)
{
return preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $string);
}

Tags: ,

Posted by

26 Jan 2007 Print PHP array content

echo "<pre>
print_r($_POST);
print_r($_GET);
print_r($_REQUEST);
</pre>";
?>

Tags: ,

Posted by