Hi
I put my radiobutton in a while. We can choose to open or close the specific room.
$i=0;
while($query_data = pg_fetch_array($result)) {
$room = $query_data["room_name"];
$id = $query_data["room_id"];
?>
<tr align="center">
<td width="20%"><font class="text"> <?=$room;?></font></td>
<td width="10%">
<input type="radio" name="open<?=$i;?>" value="<?=$roomid;?>">
<input type="radio" name="open<?=$i;?>" value="<?=$roomid;?>">
<?
$i++;
}
Can somebody tell me how to get all those variables back?
Thanks.