I have an A-Z list of users, and I'd like to be able to append the new folders created with mkdir() instead of manually adding them to the .html page. Just attached an example
Eg:
UserList.html
Example user:
<a href="Obama/"><font size="4" color="yellow">Barrack Obama</a>
Mkdir Form:
<form action="Create.php" method="post">
Full Name: <input type="text" name="Username" /><br />
<input type="submit" value="Create User Folder"/>
</form>
Create.php
<?php
mkdir($_POST["UserName"], 0777);
?>