sandbudd Posted April 23, 2010 Share Posted April 23, 2010 This code works in a table and when clicked on displays the correct page and ID...what I am trying to do is take it out of the table and put it in a jump menu? I have tried several things and can't get it to work. Any help would be appreciated. <?php while($row=mysql_fetch_assoc($result)){ ?> <tr> <td><table width="100%" border="1" cellpadding="3" cellspacing="0" class="appfields"> <tr> <td><strong><? echo $row['company']; ?></strong></td> </tr> <tr> <td><?php echo '<a href="update_display.php?id='.$row['id'].'">Edit</a>'; ?></td> </tr> </table></td> </tr> <tr> <td> </td> </tr> <tr> <td> </td> </tr> <?php } // End while loop. ?> Link to comment https://forums.phpfreaks.com/topic/199537-need-to-creat-jump-menu/ Share on other sites More sharing options...
Pikachu2000 Posted April 23, 2010 Share Posted April 23, 2010 What do you mean by "jump menu", are you referring to a <select></select> box? Link to comment https://forums.phpfreaks.com/topic/199537-need-to-creat-jump-menu/#findComment-1047328 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.