How to create a folder in PHP?

In PHP we can create a folder using mkdir() function.

eg:

>?php
       mkdir("testing");
?>

Leave a Reply