Jump to content

Need to creat jump menu


sandbudd

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.