This is a PHP script that parse file content from a file and writes this to another config file.
(more…)
Posted by Hans-Henry Jakobsen
function removeEmptyLines($string)
{
return preg_replace("/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n", $string);
}
Posted by Hans-Henry Jakobsen
echo "<pre> print_r($_POST); print_r($_GET); print_r($_REQUEST); </pre>"; ?>
Posted by Hans-Henry Jakobsen