Jump to content

Linking Help


Daney11

Recommended Posts

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

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.