good day to all, I have this problem:
while($r=mysql_fetch_array($q)){
$name= $r["name"]; // name
$email= $r["email"]; // email
$option1 = $r["option1"]; // 1 opcija
$option2 = $r["option2"]; // 2 opcija
$option3 = $r["option3"]; // 3 opcija
// izpis na zaslon
echo ("<tr>
<td> $name $email || $option1 | $option2 | $option3 |<br></td>
</tr>");
so this is the code which browses base and make text appear on screen. what I dont know how to do; so user can choose option 1 or 2 or 3... so user chooses 1 of the option and it saves in some other DB. thats how I could save this. and also I want to create that after he chooses one option other 2 dissapear or something (but this could be made with some if sentance). problem is that I dont know how to make php script that user can choose one of that three options. If you have any ideas or hints I will be glad to know them.
Regards,
Saso