Gossamer Forum
Home : General : Perl Programming :

question

Quote Reply
question
im getting a error using this line.. can any body please tell me whats wrong

unlink(/home/httpd/cgi-bin/data.log);

Quote Reply
Re: question In reply to
You need to use the following codes:

Code:
unlink("/home/httpd/cgi-bin/data.log");

And these codes need to be added after you close the database, like the following codes:

Code:
close DB;

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.