Wow. I feel really dumb.
I thought (incorrectly) that the surrounding quotes would screw with
the variables in the ADODB's INSERT statement.
many thanks
G
On Aug 7, 2007, at 2:06 PM, Uber Wannabe wrote:
-----Original Message-----
From: Graham Anderson [mailto:grahama1970@xxxxxxxxx]
Sent: Tuesday, August 07, 2007 3:34 PM
To: php-general
Subject: ADODB Insert Question (Syntax)
Hi
What is the proper way to get the ADODB class to automatically add
quotes to the below sql ?
I'm guessing that the below fails because none of the variables get
quoted with the method, qstr.
$sql = "insert into email (to_name, to_email, from_name, from_email,
subject, message, timestamp, ip) ";
$sql .= "values ($to_name, $to_email, $from_name, $from_email,
$subject, $message, $time, $ip)";
I tried something like the below to no avail
$sql .= "values($conn->qstr($to_name), $conn->qstr
($to_email), .......)";
Is there an accepted way to place multiple $variables inside an ADODB
insert statement?
many thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
-----End Original Message-----
Okay, I'm probably missing something, but why can't the values
portion just
say:
"values ('$to_name', '$to_email', '$from_name',... etc.
... with the single quotes around the variable names?
-- N/A
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php