jjmusicpro Posted September 26, 2007 Share Posted September 26, 2007 Hello everyone i am new here! I was wondering how i can run a DB query then stick the results in hyperinks, so when they click a hyperlink it will take then to say an update page. I have 1 table called test_table with 3 rows ID, First_Name and Last_Name thanks again! Quote Link to comment https://forums.phpfreaks.com/topic/70756-how-to-run-a-search-in-db-then-put-values-into-hyperlinks/ Share on other sites More sharing options...
HuggieBear Posted September 26, 2007 Share Posted September 26, 2007 Something like this should work... <?php // Set query $sql = "SELECT * FROM test_table"; // Execute it $result = mysql_query($sql); // Loop through the results while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { // Echo them out echo "<a href='update.php?id=" . $row['id'] . "'>" . $row['First_Name'] . " " . $row['Last_Name'] . "</a><br>\n"; } ?> Regards Huggie Quote Link to comment https://forums.phpfreaks.com/topic/70756-how-to-run-a-search-in-db-then-put-values-into-hyperlinks/#findComment-355745 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.