create directory in php
Now we are going to create directory that is folder in php.In the PHP we are having mkdir()to create directory.
Program
OutputNow we are going to create directory that is folder in php.In the PHP we are having mkdir()to create directory.
Program
<?php // create a new directory path mkdir("C:\wamp\www\uploaddata1"); if(mkdir) { echo "directory created"; } else { echo "directory can't created"; } ?> |
In this program we are create directory called uploaddata will created .
0 comments:
Post a Comment