Re: How to run a process in background?

2002-10-09 Thread Octavian Rasnita
Hi and thank you. I've tried the script sample and it works fine but it doesn't work with the following line: fork exit; I need to type just: fork; because otherwise the browser (IE) keeps Opening page Can you tell me, is it OK if I use the script with the line for closing STDIN,

replacing text in a file

2002-10-09 Thread Egleton, Gary
Hi, can you help a begnner with this?? I have a file with the following repeated several times. The date and time will vary. UPDATED=06/18/2002 18:42:25 I wnat to replace what ver text is between the quotes with NOT APPLICABLE ie UPDATED=NOT APPLICABLE Regards, Gary

Re: replacing text in a file

2002-10-09 Thread Roberto Ruiz
Hello Gary, God bless you. On Wed, Oct 09, 2002 at 04:19:42PM +0100, Egleton, Gary wrote: I have a file with the following repeated several times. The date and time will vary. UPDATED=06/18/2002 18:42:25 I wnat to replace what ver text is between the quotes with NOT APPLICABLE ie

Re: replacing text in a file

2002-10-09 Thread Anthony E.
my $line = 'UPDATED=06/18/2002 18:42:25'; $line =~ s/(.*?)/NOT APPLICABLE/sig; try this. --- Egleton, Gary [EMAIL PROTECTED] wrote: Hi, can you help a begnner with this?? I have a file with the following repeated several times. The date and time will vary. UPDATED=06/18/2002

Sending HTML mail?

2002-10-09 Thread Octavian Rasnita
Hello all, Could you please tell me what module should I use to send HTML mail? Can I use Net::SMTP? And what module could I use to send attachments? Thank you. Teddy's Center for the blind: http://teddy.fcc.ro/ Email: [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: How to run a process in background?

2002-10-09 Thread Octavian Rasnita
Hi and thank you. I want to create a script that is activated when someone visits a .shtml page. That script is launched by a server side includes line. The script need to check if a database was updated, and send mail to more email addresses about this. This mailing process might take a long

Re: Perl / CGI - User Authentication ...

2002-10-09 Thread Todd Wade
Kevin wrote: Hello, I am in the process of developing a CGI application that requires user authentication. In the past I have developed a simple login screen where I validated the user and forwarded the request based on the result. I would like to progress to the next level and pass the