<form action="edit_cust.php" method="GET"> <input type='hidden' name='cust_no' value=<? {$row['Cust_No'];} ?>> <input type="submit" value="Edit Customer"> </form> PHP: $cust_no = $_GET['cust_no']; PHP: That is the code that i'm using .. i've looked and overlooked the case and can't figure it out.. any ideas?
<input type='hidden' name='cust_no' value="<? echo $row['cust_no']; ?>"> PHP: Also, php is case senative. $row['cust_no'] is not $row['Cust_No'] .
Thanks! Works great! Exodus.. it is Cust_No in the database, so that is what it should be in the $row['Cust_No']. Thanks for your help though!