Re: about CGI

2007-08-16 Thread Mr. Shawn H. Corey
joker wrote: I don't know Perl to build a CGI script but I know C++. I need to know how the server use a "file.exe" and the html page from the client browser. In C++ the data I need to consider is stored in arrays or variables. The html page inside the server how is stored? How a CGI .exe can fi

about CGI

2007-08-16 Thread joker
I don't know Perl to build a CGI script but I know C++. I need to know how the server use a "file.exe" and the html page from the client browser. In C++ the data I need to consider is stored in arrays or variables. The html page inside the server how is stored? How a CGI .exe can find that data? M

Re: really basic question about CGI module

2002-12-16 Thread james lundeen
><[EMAIL PROTECTED]> > oo.com> cc: (bcc: Brent >Michalski/STL/MASTERCARD) > > Subject: really basic question abou

Re: really basic question about CGI module

2002-12-13 Thread Douglas Gardiner
- Original Message - From: "Brent Michalski" <[EMAIL PROTECTED]> To: "james lundeen" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, December 13, 2002 12:30 PM Subject: Re: really basic question about CGI module > > Use the $dbh->

Re: really basic question about CGI module

2002-12-13 Thread Brent Michalski
ASTERCARD) Subject: really basic question about CGI module 12/12/02

Re: really basic question about CGI module

2002-12-13 Thread Jordan Mclain
use place holders in your SQL statements, and let the DBD driver worry about what is in your input. ex: my $sth = $dbh->prepare("INSERT INTO table (value1, value2) values (?, ?)"); $sth->execute($value1, $value2); $sth->finish(); On Thu, 2002-12-12 at 14:41, james lundeen wrote: > I "use CGI" i

RE: really basic question about CGI module

2002-12-13 Thread Peter Kappus
27;/''/g; good luck! -Original Message- From: james lundeen [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 12:41 PM To: '[EMAIL PROTECTED]' Subject: really basic question about CGI module I "use CGI" in my routines very often and at times need to l

really basic question about CGI module

2002-12-13 Thread james lundeen
I "use CGI" in my routines very often and at times need to look at the incoming values from forms to make sure that they don't include "'" "," and other things that might blow up my connection with mysql database. Can someone please give me a nice piece of reusable code that will read the inco

really basic question about CGI module

2002-12-13 Thread james lundeen
I "use CGI" in my routines very often and at times need to look at the incoming values from forms to make sure that they don't include "'" "," and other things that might blow up my connection with mysql database. Can someone please give me a nice piece of reusable code that will read the inco

Re: Sort of questions about CGI

2002-08-04 Thread zentara
On Sun, 4 Aug 2002 02:46:46 +0800, [EMAIL PROTECTED] (Connie Chan) wrote: >>"many detailed questions on CGI " You need to search thru the RFC's for cgi Here's a start: http://cgi-spec.golux.com/ http://www.perl.org/CGI_MetaFAQ.html -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Sort of questions about CGI

2002-08-03 Thread Connie Chan
1. Can remote user hide their REMOTE_ADDR and HTTP_REFERER? 2. What types of REQEUST_METHOD will CGI / CGI.pm handles ? I think just get and post. 3. How many enctypes here ? What I know is 2. Is that refer to CGI/1.1 or HTTP/1.1 or the browser? 4. When I pick up a form, would the line breaks

Re: question about cgi-lib.pl

2002-07-24 Thread Randal L. Schwartz
> "Michal" == Michal Simovic <[EMAIL PROTECTED]> writes: Michal> I'd like to ask how to tell perl script to use Michal> cgi-lib.pl and where cgi-lib.pl should be placed. cgi-lib.pl can be found in /dev/null. As in, don't use it. If you have code that uses it, see "perldoc CGI" and look for

Re: question about cgi-lib.pl

2002-07-23 Thread David T-G
Michal -- ...and then Michal Simovic said... % % I'd like to ask how to tell perl script to use % cgi-lib.pl and where cgi-lib.pl should be placed. 1) I agree with Connie; you're probably using really old code. 2) To use a module, just use modulename ; and away you go. 3) To use code from

Re: question about cgi-lib.pl

2002-07-23 Thread Connie Chan
Hmm... if I don't remember it wrongly, cgi-lib.pl is some sort of old Perl(4) code. Now, you better use CGI. Rgds, Connie - Original Message - From: "Michal Simovic" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 23, 2002 4:28 PM Subject

question about cgi-lib.pl

2002-07-23 Thread Michal Simovic
I'd like to ask how to tell perl script to use cgi-lib.pl and where cgi-lib.pl should be placed. __ Do You Yahoo!? Yahoo! Health - Feel better, live better http://health.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command