On my slackware 13.0, php-5.2.11
The directory wich contain files must be owned by apache user, the files (obviously) they have to be apache writable
Descripción
void delete
( void
)
Esta es una entrada tonta del manual para satisfacer a aquéllos que están buscando unlink() o unset() en el lugar equivocado.
Valores devueltos
No devuelve ningún valor.
Alessandro Pastore
09-Jul-2011 03:53
abye81 at yahoo dot com
04-Aug-2010 10:02
to delete file u can use this script
<?php
$filename = "myfile.txt";
unlink($filename);
?>
