Question
folder accessing via ftp
i am trying to access a folder that is created on the server. here is my code that I use to create it:
<?php
if (isset($_POST['submit'])) {
$name = $_POST['gname'];
$description = $_POST['gdescription'];
mkdir("$name",'0777');
}
?>
here is the error i get when i try to access the folder on the server:
