RE: help with HTTP::Request for POST

2003-02-18 Thread Scott Lutz
Thanks for the input drieux! All of the information that I have found has said that you can not change the form action using IE, which is why I was led to the server side method. I will try the javascript, to see how it works! Scott Lutz Pacific Online Support Phone: 604.638.6010 Fax

help with HTTP::Request for POST

2003-02-18 Thread Scott Lutz
$ua->request(POST 'https://domains/perl/reg_system.cgi', [ domain => $q->param("domain"), affiliate_id => $q->param("affiliate_id"), action => $q->param("lookup"),

RE: sendmail

2002-03-04 Thread Scott Lutz
If you want the format to be text/plain, then it is not possible. Why not just link to a redirect script? Scott Lutz Pacific Online Support Phone: 604.638.6010 Fax: 604.638.6020 Toll Free: 1.877.503.9870 http://www.paconline.net -Original Message- From: Rahul Garg [mailto:[EMAIL

OpenSRS

2002-02-12 Thread Scott Lutz
possible), yet maintain state and security. Does anyone have any good pointers and/or advice here? Scott Lutz -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

versions of CGI.pm

2002-01-04 Thread Scott Lutz
Why is it when you specify different version of CGI types, ie. use CGI ':cgi-lib'; use CGI ':standard'; use CGI; that sometimes code will work, and other times you get nothing? Does anyone know of a good URL for reference on this? Thanks. Scott Lutz Pacific Online Support

RE: email address checker...

2001-12-20 Thread Scott Lutz
Here is a link to Mail::CheckUser : http://aspn.activestate.com/ASPN/Cookbook/Rx/Recipe/65255 Scott Lutz technical support Pacific Online http://www.paconline.net -Original Message- From: Jeremy Webster [mailto:[EMAIL PROTECTED]] Sent: December 20, 2001 2:31 PM To: [EMAIL PROTECTED

"header() method" Problem

2001-06-21 Thread scott lutz
Here is what the man page says for CGI.pm: print $q->header(-Refresh=>'10; URL=http://www.capricorn.com'); but what if you want to use some sort of dynamic value for the URL? I am having issues with the ( ' ) >single quotes< not letting me send any variable values in, ( I am looking to use $q->r

Re: quoted text in a perl form text field problem...

2001-06-14 Thread scott lutz
You could search out the "quotes" and replace with "nothing" $input =~ s/\"//; _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Re: Form - Password security

2001-06-13 Thread scott lutz
Do you think it would be safe to assume that most web hosts would have this enabled on their machines? >From reading the README file it seems that it was depricated. _ Get Your Private, Free E-mail from MSN Hotmail at http:/

Form - Password security

2001-06-13 Thread scott lutz
I am wondering if anyone has any experience with the Rot13.pm? I am looking for a module to encrypt the log-in password from a form, and am unfamiliar with all of the modules on CPAN, and so am looking for some feedback. Thanks scott