Hello, I need to create directories using php. Here is my code:
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
mkdir("$path/dir", 0777);
?>
When I run this script, I get a message in the browser saying:
Warning: mkdir(/home/dir): No such file or directory in /home/createDir.php on line 3