Advertisement
Mithila2

FlyDrive-make directory

Dec 19th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2. $dirPath = "images/new_images";
  3. $result = mkdir($dirPath, 0755);
  4. if ($result == 1) {
  5. echo $dirPath . " has been created";
  6. } else {
  7. echo $dirPath . " has NOT been created";
  8. }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement