![]() |
|
|
+ Search |
![]()
|
Jan 25th, 2001 20:25
Philip Olson, Jerry Garcia,
Assuming you have permission to do so, consider using the unlink()
function :
http://www.php.net/manual/en/function.unlink.php
An example use :
$file = '/path/to/filename.txt';
unlink($file);
Read the user comments within the above manual link for related
information.