Help for this page

Select Code to Download


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