- or download this
$fileName = "../../20080101.txt";
printf ("File to be deleted: [%s]\n", "$fileName");
unlink( $fileName );
- or download this
File to be deleted: [../../20080101.txt]
- or download this
$fileName = $q->param('deletetarget');
printf ("File to be deleted: [%s]\n", "$fileName");
unlink( $fileName );
- or download this
File to be deleted: [../../20080101.txt]