On Sunday 09 February 2003 10:29, Terry L. Ensley wrote: > You found it - > > It works like a charm - > > Thanks Dennis > > > "Dennis Cole Jr" <dcole@users.sourceforge.net> wrote in message > CDEGLPGNGNKIFJCNOEJOAEIACAAA.dcole@users.sourceforge.net">news:CDEGLPGNGNKIFJCNOEJOAEIACAAA.dcole@users.sourceforge.net... > > > Part of the problem is > > > > $insertGoTo = "booking_details.php?email=".HTTP_POST_VARS["email"].""; > > > > should be > > > > $insertGoTo = "booking_details.php?email="$HTTP_POST_VARS["email"].""; For people wondering _why_ it "works like a charm" the correct statement should in fact be: $insertGoTo = "booking_details.php?email=".$HTTP_POST_VARS["email"].""; -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * ------------------------------------------ Search the list archives before you post http://marc.theaimsgroup.com/?l=php-db ------------------------------------------ /* You need no longer worry about the future. This time tomorrow you'll be dead. */ -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php