Jim Moseby wrote:
>> $sql = "INSERT INTO table (f1, f2, f3, ". implode(",",
>>        array_keys($pr1)) .") VALUES ('abc', '123', '456', ". implode(",",
>> array_values($pr1))
>> .")";
>> 
>> HTH,
>> 
>> Brad
> 
> 
> Might not work if the array values need to be enclosed in
> quotes.  I would build the query string in a foreach loop and execute
> the query afterwards. 
> 
> JM

Good point, Jim.  I just realized that.  I actually use this method in one
of my scripts; in my case all of the fields are varchar and the code below
works perfectly.  This is updated to quote all values.

$sql = "INSERT INTO coreg_lead (".implode(",", array_keys($dbFields)).")
        VALUES ('".implode("','", array_values($dbFields))."')";
        
-Brad

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to