On 4/23/2001 1:32 PM this was written:

> $sql = "INSERT INTO $userstable (client, contact, email, address, city, state,
> zip, phone, fax, model, country, details, type)
> 
> VALUES("$client", "$contact", "$email", "$address", "$city", "$state", "$zip",
> "$phone", "$fax", "$model", "$country", "$details", "$type")";

Um.. You're using double-quotes inside of double quotes.  You need to use
single quotes....

VALUES('$client', '$contact', '$email', '$address', '$city', '$state',
'$zip', '$phone', '$fax', '$model', '$country', '$details', '$type')";

-- 

Thomas Deliduka
IT Manager
     -------------------------
New Eve Media
The Solution To Your Internet Angst
http://www.neweve.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to