> Which is the line that relates to the line:
>                 \"$_SESSION['salutation'];\", 
> I've tried removing the ';' but it change nothing...?
> Can anyone see my error?

Either take out the quotes surrounding the word 'salutation' or
take the variable out of the string:

\"" . $_SESSION["salutation"] . "\",

Also, you don't need the semicolon as part of the query.

Chris

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

Reply via email to