Hello,
In my perl CGI script, I'm trying to extract the PID that corresponds to it. How do I do this? I'm also trying to extract the timestamp. How come it's not possible to do something like:
print "<HTML><BODY>"; print `time`; print "</BODY></HTML>";
Try this:
print "<HTML><BODY>"; print scalar localtime; print "</BODY></HTML>";
-- Andrew Gaffney
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]