Jump to content

option, select, hyperlink to SQL databse


jamesk

Recommended Posts

Hi,

 

I am trying to create a dropdown menu to navigate to a reference in my database via the id number the code i am using looks like this:

 

<form name="drop">
<select name="list"
OnChange="location.href=drop.list.options[selectedIndex].value">
<?php do { ?>
<option>
<a value="http://localhost/fckdatabase/test.php?pageNum_test=<?php echo $row_edit['id']; ?>&totalRows_test=44"><?php echo $row_edit['Name']; ?></a> 
  <?php } while ($row_edit = mysql_fetch_assoc($edit)); ?>
</select>

 

Am i doing something wrong because when i click on the link it will try and take me to the data stored in my "Name" field

 

for example the link in my browser looks like this:

 

http://localhost/private/New%20page

 

and i want it to look like this

 

http://localhost/private/test.php?pageNum_test=3&totalRows_test=44">

 

the bold 3 should the echo of the id field

 

any hints or better ways of doing this?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/149965-option-select-hyperlink-to-sql-databse/
Share on other sites

I've solved that problem however now i have this one:

 

I am trying to make links that are in relation to my database. I am try it make it so that one page shows a lists of links displaying the information in my "Name" field. 

 

I have a unique key set up so that each record is identifiable "id".

 

and I want to display my record "data"

 

Any help would be super

  • 2 weeks later...

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.