i've a code to create a directory on click of a button sending the name of the directory from previous form.but this doesnot create directory or give error.wht is the problem.i'm using this code on windows platform,php 5,apache,mysql.
Another question where is the directory created from the below code.
<?php
$directoryname = $_REQUEST['name'];
$shell = exec("md \a ".$directoryname."");
if ($shell)
{
echo "Directory Created Successfully");
}
else
{
echo"Directory could not be created!!!";
}
?>