Daney11 Posted February 7, 2007 Share Posted February 7, 2007 Hi guys, Having a bit of a problem with linking. Bascially i want to know how to link like this... members.php?member_id=1 Id like to know what commands i would put in members.php to get the member_id and the information of that member_id to show.. thanks Dane Link to comment https://forums.phpfreaks.com/topic/37509-linking-help/ Share on other sites More sharing options...
alpine Posted February 7, 2007 Share Posted February 7, 2007 Do you mean how to "read" the id from the adress-bar and how to use it ? Example with mysql: <?php if(!empty($_GET['member_id'])){ $member_id = $_GET['member_id']; $sql = mysql_query("SELECT * FROM members_table WHERE id='$member_id'"); if(mysql_num_rows($sql)==1){ $col = mysql_fetch_array($sql); echo "User ".$col['name']." has ID ".$col['id']; } else{ echo "No user found with ID ".$member_id; } } ?> But it boils down to how your existing members page is constructed, but $_GET['whatever'] wil get 'whatever' from the adress bar. Link to comment https://forums.phpfreaks.com/topic/37509-linking-help/#findComment-179388 Share on other sites More sharing options...
Daney11 Posted February 7, 2007 Author Share Posted February 7, 2007 You star, thankyou very much. Link to comment https://forums.phpfreaks.com/topic/37509-linking-help/#findComment-179390 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.