This is what I got so far to create the dir
<?php
function createhost($dir) {
mkdir($dir, "7777");
touch("$dir");
chmod("$dir", 0755);
}
createhost("./help");
?>
I know its not much but its my first time doing this. Thank you to all who have read. If you can help please do. Thank you.
Chad