I have developed a php file called “profile.php” that displays the current user’s profile.But, I could not decide how to display others’ profile pages. I mean, for example, i displayed all of the members on the main page and clicked one of them. Then, should i use “a href” tag for every user to direct to another php file, for instance, another_profile.php . If so, How can i send the clicked user’s information, name, surname etc. ,to the another_profile.php?
Thanks
I have developed a php file called profile.php that displays the current user’s profile.But,
Share
try GET variable…
Next catch the profile_id query string
$id = $_GET['profile_id']and find the id (1 in this case) in your database to get the data that belongs to that profile.I hope it helps.