Jump to content

Need Help, Tricky stuff..


HaZaRd420

Recommended Posts

Ok, First things first. I wanna be able to Link an ID to the rest of the stuff thats on the database, for example. I have a roster, On the first page i only have it displaying the '.$row["alias"].' and a few other, but in that same db it also has computer specs. So i want to be able to link the viewprofile, to the rest of the stuff on another page when you click it. Please help me out on this one, hit me up on A.I.M if you can explain it easier there. Thanks. A.I.M = xdimebagxpantera
Link to comment
https://forums.phpfreaks.com/topic/8107-need-help-tricky-stuff/
Share on other sites

hi,

try something like this

-pass id ($row['alias']) into a string; e.g. <a href="viewdetails.php?id=<?=$row['alias'];?>">click here for details</a>
-on the details page, in this case viewdetails.php, you will grab the id in the url and use it in a mysql query to pull whatever details you need from the db, e.g. $sql=mysql_query("SELECT * FROM `table_name` WHERE `id`='$_GET[id]'") or die (mysql_error());

let me know if this works.

Link to comment
https://forums.phpfreaks.com/topic/8107-need-help-tricky-stuff/#findComment-29568
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.