> create directory in php ~ Online tutorial

create directory in php

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

<?php
// create a new directory path
mkdir("C:\wamp\www\uploaddata1");
if(mkdir)
{
    echo "directory created";
}
else
{
    echo "directory can't created";
}
?>


Output


In this program we are create directory called uploaddata will created .

Please Give Us Your 1 Minute In Sharing This Post!
Please Give Us Your 1 Minute In Sharing This Post!
SOCIALIZE IT →
FOLLOW US →
SHARE IT →
Powered By: BloggerYard.Com

0 comments: