This Post Has Been Viewed 111 Times Since Fri Feb 29, 2008 12:01 pm Posted By web hosting with 0 replies
POST# 445
Posted On: Fri Feb 29, 2008 12:01 pm
if you want to delete or remove a file with your php scripts, you can do that in the code with one simple function:
$file = 'delete.txt';
unlink($file);
the above code would delete a file called
delete.txt
hope this helps