Create a directory with mkdir() in PHP
Description
The following code shows how to create a directory with mkdir().
Example
<?php
mkdir("testing");
?>
The following code shows how to create a directory with mkdir().
<?php
mkdir("testing");
?>