puja Posted April 28, 2006 Share Posted April 28, 2006 hi i want to add a column for radio buttons at the end of my table but im not sure how 2 do it.my table looks like:[code] echo '<table align = "center" border = "1" cellspacing = "0" cellpadding = "5"> <tr> <td align="left"><b>Type</b></td> <td align="left"><b>Sleeps</b></td> <td align="left"><b>Board</b></td> <td align="left"><b>Description</b></td> <td align="left"><b>Pets Allowed</b></td> </tr> '; while ($row = mysql_fetch_array($result, MYSQL_ASSOC)){ echo ' <tr> <td align="left">'. $row['type']. '</td> <td align="left">'. $row['sleeps']. '</td> <td align="left">'. $row['board']. '</td> <td align="left">'. $row['description']. '</td> <td align="left">'. $row['pets_allowed']. '</td> </tr> '; } echo '</table>';[/code]has anybody got any ideas how i could do it?thanks Quote Link to comment Share on other sites More sharing options...
craygo Posted April 28, 2006 Share Posted April 28, 2006 what are you putting as a value for the radio button?? I assume it will be id so..[code]<td align=center><input type=radio name=id value="'.$row['fieldname'].'"></td>[/code]Change the name and the fieldname to whatever suits youRay Quote Link to comment Share on other sites More sharing options...
puja Posted April 28, 2006 Author Share Posted April 28, 2006 hey thanksit works perfectly! well it looks like it is supposed to, now ive just got to make the next function workthanks again Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.