> Online tutorial : delete directory in php
Showing posts with label delete directory in php. Show all posts
Showing posts with label delete directory in php. Show all posts

delete directory in php

delete directory in php



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


output:
before





After the code