Re: html in a cgi script

2002-03-22 Thread zentara
On Thu, 21 Mar 2002 16:09:42 -0600, [EMAIL PROTECTED] (Camilo Gonzalez) wrote: >Can someone resend the regex they formulated for checking for valid emails? >I seem to have accidently deleted it. Thanks Go to www.cpan.org and get the Email-Valid module, the regex is in Valid.pm. -- To unsubs

RE: html in a cgi script

2002-03-21 Thread Camilo Gonzalez
Can someone resend the regex they formulated for checking for valid emails? I seem to have accidently deleted it. Thanks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: html in a cgi script

2002-03-15 Thread Scot Robnett
ooks?", popup_menu(-name=>'rating', -values=>['1','2','3','4','5','6', '7','8','9',10']), p, submit, end_form, hr; print end_html; -Ori

RE: html in a cgi script

2002-03-15 Thread Scot Robnett
", popup_menu(-name=>'rating', -values=>['1','2','3','4','5','6', '7','8','9',10']), p, submit, end_form, hr; print end_html; -Original Message--

RE: html in a cgi script

2002-03-15 Thread Jessica Ortiz
x27;); # $q->end_html; # end the HTML doc Thanks. Jessica >From: "Scot Robnett" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Subject: RE: html in a cgi script >Date: Mon, 11 Mar 2002 11:39:32 -0600 > >Matt, > >CGI.pm has some decent functionality for

RE: html in a cgi script

2002-03-11 Thread Scot Robnett
Matt, CGI.pm has some decent functionality for print HTML from Perl, if you are not worried about making your pages look pretty. It does offer some limited support for style sheets, but usually if I want my HTML to look nice, I just use a HERE doc. You should be able to save the following example

RE: html in a cgi script

2002-03-11 Thread Hanson, Robert
nson, Robert; [EMAIL PROTECTED] Subject: Re: html in a cgi script have you got a script you can give me an example of, after a day at college with VB and PHP, Perl comes slowly! :) On Monday 11 Mar 2002 5:26 pm, Hanson, Robert wrote: > Here is the short story... > > 1. All HTTP messages

Re: html in a cgi script

2002-03-11 Thread Matthew Harrison
have you got a script you can give me an example of, after a day at college with VB and PHP, Perl comes slowly! :) On Monday 11 Mar 2002 5:26 pm, Hanson, Robert wrote: > Here is the short story... > > 1. All HTTP messages have a header and a body section. The header > includes content type (HTM

RE: html in a cgi script

2002-03-11 Thread Hanson, Robert
Here is the short story... 1. All HTTP messages have a header and a body section. The header includes content type (HTML, text, GIF, etc), the length of the content, login info, etc, etc. The body contains the actual data. 2. The head and body sections are seperated by a blank line. 3. You ne