..different index page for the suite. It's very easy because the only thing you need to do is change the content of default.php. I don't want to create something like hello world or..
Creates a blueprint/map of a server folder
<?php
function WriteF($sDest,$sWrite){
if(false===($rNew = @fopen($sDest,"a"))){
// define the error
return("Failed to open file in writing mode");
}
@fputs($rNew,$sWrite);
@fclose($rNew);
return("Successfully wrote ".strlen($sWrite)." bytes to file <b>".$sDest."</b>");
}
?>