View Single Post
Old Feb 10th, 2006, 9:30 AM   #6
Lich
Professional Programmer
 
Lich's Avatar
 
Join Date: May 2005
Location: Detroit
Posts: 254
Rep Power: 4 Lich is on a distinguished road
Send a message via AIM to Lich Send a message via MSN to Lich
[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]
__________________
--John Cruz
Web Developer
www.cruzweb.net
Lich is offline   Reply With Quote