goto specific record after using insert form
I am doing an insert form to add a company to my mysql database. On the form, the user enters all the company information. When they submit, I want to go to another form page where they can add their logo. When you use the insert form wizard it ask where you want to go when done. So this line is created
$insertGoTo = "addlogo.php";
I have tried $insertGoTo = "addlogo.php?id" . "=" . $_POST['id'] . ""; , $insertGoTo = "addlogo.php?id" . "=" . $_GET['id'] . ""; $insertGoTo = "addlogo.php?id=" . "=" . $_POST[''id'] . ""; and $insertGoTo = "addlogo.php?id<?php echo $rs_rowsrecordset['id']"";
the addlogo id is a record update page looking at the url for the id. When the url goes it is http://www.mysite.com/addpage.php?id=&
When I put in a number of the ID it does what I want.
The ID is autoincrement from the database.
So, anyone know how I can pass that ID to the addlogo page? Thanks.
