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
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
Share on other sites

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.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.