HaZaRd420 Posted April 22, 2006 Share Posted April 22, 2006 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 Quote Link to comment https://forums.phpfreaks.com/topic/8107-need-help-tricky-stuff/ Share on other sites More sharing options...
s2day Posted April 22, 2006 Share Posted April 22, 2006 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. Quote Link to comment https://forums.phpfreaks.com/topic/8107-need-help-tricky-stuff/#findComment-29568 Share on other sites More sharing options...
HaZaRd420 Posted April 22, 2006 Author Share Posted April 22, 2006 Im getting a parse error, unexpected T_VARIABLE, expecting ',' or ';' where i put the url. I need some help, i dont see where the error can be. heres the code.[code]<td><b><a href="viewdetails.php?id=<?='$row[alias]';?>"></td>[/code]Its just that line. Quote Link to comment https://forums.phpfreaks.com/topic/8107-need-help-tricky-stuff/#findComment-29640 Share on other sites More sharing options...
Orio Posted April 22, 2006 Share Posted April 22, 2006 You didnt echo it:[code]<td><b><a href="viewdetails.php?id=<?php echo($row[alias]); ?>"></td>[/code]Orio. Quote Link to comment https://forums.phpfreaks.com/topic/8107-need-help-tricky-stuff/#findComment-29642 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.