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