I have mySQL db with 17 tables and I would like to let user to log in and make updates to her/his account within 2 forms. BUT:
how to take the last time selected informaton out of db tabel(?) if it was passed into the table as select, radio or chackbox?
I use
"select * etc..." and than
while ( ( $row = mysql_fetch_array($result) ) ):
echo $row["something"]; for all informations
If I have:
<input type="radio" name="transit" value=http://www.phpbuilder.com/board/archive/index.php/"500.000">500.000
<input type="radio" name="transit" value="500.001 - 3.000.000">500.001 - 3.000.000
etc.
user has chacked the first time "500.001 - 3.000.00" how to make it "be chacked" in my form where user shoul do updates?
Thanks a lot!
how to take the last time selected informaton out of db tabel(?) if it was passed into the table as select, radio or chackbox?
I use
"select * etc..." and than
while ( ( $row = mysql_fetch_array($result) ) ):
echo $row["something"]; for all informations
If I have:
<input type="radio" name="transit" value=http://www.phpbuilder.com/board/archive/index.php/"500.000">500.000
<input type="radio" name="transit" value="500.001 - 3.000.000">500.001 - 3.000.000
etc.
user has chacked the first time "500.001 - 3.000.00" how to make it "be chacked" in my form where user shoul do updates?
Thanks a lot!