in reply to unlink($ful) does not delete

Have a look at:

File::Temp

This module creates temporary files (using templates, temp directories, etc.) which are then unlinked/deleted when the programs exits

I haven't used it in a web setting though...

njcodewarrior

Replies are listed 'Best First'.
Re^2: unlink($ful) does not delete
by daithimcc (Novice) on Dec 08, 2007 at 21:44 UTC
    Thanks. As I said up above, the problem turned out to be the fact that I had -T switch at the top of the code and the parameter was not being validated in the script. The short-term solution was to remove the switch. Now I will put in the validation!