Hi
Quick code on creating a new Folder.
e.g ID number send and then folder of that ID number is created.
Thanks for any help in advance.
Akbar
Some good read
http://www.php.net/manual/en/function.mkdir.php
... $id = $_POST[id];
if(!file_exists($id)) { @mkdir($id,0777); } else { die("directory $id already exists!"); }