Get all files from folder and delete them in php::
$files = glob('path/to/temp/*'); // get all file names
foreach($files as $file){ // iterate files
if(is_file($file))
unlink($file); // delete file
}
Here, In below code, user can enter two numbers to find the odd and even numbers between them. The number must be in between 1000 and 3000...
No comments:
Post a Comment