I'm always making my inserts like this:

$Insert = "INSERT INTO basket_db (name, image_id, customer_id, session_id)
";
$Insert .= "VALUES ('$name', '$image_id', '$customer_id', '$PHPSESSID')";

...and I'm using the SET Field = '$Value' in the Update Querys like this:

$UpdateQuery = "UPDATE produkt ";
$UpdateQuery .= "SET produkt_name = '$produkt_name', ";
$UpdateQuery .= "size = '$size', kategorie = '$kategorie' ";
$UpdateQuery .= "WHERE produkt_key = '$produkt_key'";

hope it helps someone out ;o)

Schura


----- Original Message -----
From: "Tim Stoop" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 14, 2002 11:00 PM
Subject: [PHP] Re: mysql statement (still a semi newbie)


> Alexander Ross wrote:
>
> > That first column is an auto_incrementing column so i don't want any
data
> > INSERT INTO cast VALUES(DEFAULT, 'Rick', 'Blaine', 'Humphrey', 'Bogart',
> > 'male');
>
> I think you need to use NULL instead of DEFAULT... I'm not 100% sure. Just
> try it :)
>
> --
> Kind regards,
> Tim
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


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

Reply via email to