hi everyone....
i am trying to create a folder in my home directory but that ain't working due to permission restriction
my code looks like the following:
and my output is the following:
i know it is related to permissions but i dunno how to fix that....
please help
thanks in advance
i am trying to create a folder in my home directory but that ain't working due to permission restriction
my code looks like the following:
Code:
<?php
$path = "/home/fouad/testing";
if(mkdir($path,700,TRUE)) {print "success."; }else {print "failure.";}
?>
Code:
Warning: mkdir() [function.mkdir]: Permission denied in /var/www/test2.php on line 3 failure.
please help
thanks in advance
Comment