i am using the following php
code to create a folder and a sub folder on xampp
server...
<?php
$userFolder = "poop";
mkdir($userFolder);
$newfolder = $userFolder . "/bla bla bla";
mkdir($newfolder, 0777);
// check to see if it has been created or not using is_dir
if (is_dir($newfolder)) {
echo "The $newfolder directory has been created<br /><br />";
}
?>
my question is how do i use ajax to do this..... any help would be appreciated... :) thanks in advance... :)
"; } ?>` – SRC SRC Nov 25 '13 at 10:07