I am running a little test with mkdir trying to create a new directory in my web server which is hosted by other company.
when i ran the following code:
<?php
mkdir("/public_html/newfolder", 0700);
?>
if gave me access denied message. what can i do about this??
Thank you.