Is it OK to use double quotes within the POST variable instead of the single quotes? Like this...
Or do I have to do it like this?Code:$sql = "UPDATE booking SET country = '$_POST["country"]',... "
Seems like a preponderance of quotes. Thanks, eCode:$sql = "UPDATE booking SET country = ' "$_POST['country']" ',... "

