Thats pretty slick, and would help my situation if I was using just Php.
I have a html form running an external php script on user click of the submit button.
<form action="script/userDetails.php" method="post" onsubmit="return FrontPage_Form1_Validator(this)" language="JavaScript" name="FrontPage_Form1">
Now, script runs perfectly and I can get the last Autoincrement record using, mysql_insert_id(), however, I cannot get the id to pass within the script with
header ("Location: $formSuccess");
where $formSuccess = "../responses/formSuccess.htm?id="; is defined as the start of the script.
What do I need to include in the above line to enable me to display the id on the new page?