
April 23rd, 2000, 10:16 PM
|
 |
Contributing User
|
|
Join Date: Feb 2000
Location: Perth West Australia
Posts: 757
Time spent in forums: 4 h 18 m 32 sec
Reputation Power: 14
|
|
|
if you mean you have something like ..
option1<input type=radio name=thisfield value=1>
option2<input type=radio name=thisfield value=2>
then form variable $thisfield = 1 or 2 depending on selection, then in a conformation form you would use....
option1<input type=radio name=thisfield value=1 <?php if($thisfield==1){ echo "checked";}?>>
option2<input type=radio name=thisfield value=2 <?php if($thisfield==2){ echo "checked";}?>>
AM I even close to what you meant?
------------------
Simon Wheeler
FirePages -DHTML/PHP/MySQL
|