Re: displaying a message using perl code

2005-09-18 Thread Owen Cook
On Mon, 19 Sep 2005, David Swiderski wrote: > > I tried to view the perl demo at the link you provided in your email > http://www.pcug.org.au/~rcook/tute.cgi > and WAS unable to GET TO THE DEMO to view it. Fair enough, but you didn't say in what way you couldn't view that. Just a couple of text

Re: displaying a message using perl code

2005-09-18 Thread David Swiderski
k" <[EMAIL PROTECTED]> To: "David Swiderski" <[EMAIL PROTECTED]> Cc: Sent: Sunday, September 18, 2005 1:05 AM Subject: Re: displaying a message using perl code perl script email.pl #!/usr/bin/perl # Gets the data from the form &parse_form; Wow OK, looks like you

Re: displaying a message using perl code

2005-09-17 Thread Owen Cook
On Sat, 17 Sep 2005, David Swiderski wrote: > > Hi Owen, Thanks for your reply to my email. Follows is my perl script which > I'm trying to get it to display a message. > > perl script email.pl > #!/usr/bin/perl > # Gets the data from the form > &parse_form; Wow OK, looks like you are u

Re: displaying a message using perl code

2005-09-17 Thread David Swiderski
}; } @pairs = split(/&/, $buffer); foreach $pair (@pairs) { ($name, $value) = split(/=/, $pair); $value =~ tr/+/ /; $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $FORM{$name} = $value; } } text file message.pl #!/usr/bin/perl #

Re: displaying a message using perl code

2005-09-17 Thread Owen Cook
On Sat, 17 Sep 2005, David Swiderski wrote: > > My perl question is, is there a simple way to display some text/message on > the users screen such as > > your information has been sent. > Thank You for joining the alumni community! > We hope to see you at the next reunion. Well the answer to

displaying a message using perl code

2005-09-17 Thread David Swiderski
Hello to all on the perl email list. I am new to this list and being a newbie, don't have much experience or knowledge of perl but have managed to modify my first simple perl script which sends information via email from an html form that I created and which gets filled out by the user. I was