PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?
$newDir = "public_stuff";
$setDir = mkdir($newDir, 0777);
if($setDir)
{
echo "New Directory <b>{$newDir}</b> created.";
}
else
{
echo "There was a problem creating the new <b>{$newDir}</b> Directory.";
}
?>