I want to know the solution for creating a link in php page by making a directory in unix.?if somebody knows the answer kindly reply.
Thank you
Using PHP's mkdir function, also check if the directory exists. You can also use exec which can execute OS command line from within PHP. In either case, look at PHP's website for more info.
$temp_path = "some_path/".$name_of_directory."/";
if(!file_exists($temp_path))
{
mkdir($temp_path, 0777);
echo "<a href=\"".$temp_path."\" target=\"_self\">Link Text</a>";
}