|
[PHP]<a href = "custAddProd.php?id=<?echo "$id";?>"[/PHP]
Should be
[PHP] <input type="Submit">[/PHP]
and make id a hidden field in your form that will go through when your form is submitted.
Then somewhere in custAddProd.php add:
[PHP]$id = $_POST["id"][/PHP]
|