Drewdle Posted January 15, 2011 Share Posted January 15, 2011 Hey, I have a database with user info in it. I was wondering would it be possible to have a link post info to a page and then have that page display info relevant to the received info?... Link page: <a href="profile.php?name=<? print $_GET['Username'] ?>" method="post"><? $row['Username'] ?></a> Profile page: <?php $username = $_POST['Username']; $query = $query = mysql_query('SELECT * FROM users WHERE Username') ?> You are viewing: <? echo $username ?>'s profile. Email: <? echo $row['Email'] ?> I have predefined $row. Is it possible to do this way or would I have to use a different method?... Cheers Link to comment https://forums.phpfreaks.com/topic/224497-link-_post/ Share on other sites More sharing options...
dragon_sa Posted January 15, 2011 Share Posted January 15, 2011 <a href="profile.php?name=<?php echo $row['Username']; ?>><?php echo $row['Username']; ?></a> <?php $username=$_GET['Username']; $query=mysql_query("SELECT * FROM users WHERE Username='$username'"); $row=mysql_fetch_array($query); ?> You are viewing: <?php echo $username; ?>'s profile. Email: <?php echo $row['Email']; ?> edit: just changed the query which I didnt notice before Link to comment https://forums.phpfreaks.com/topic/224497-link-_post/#findComment-1159666 Share on other sites More sharing options...
Drewdle Posted January 15, 2011 Author Share Posted January 15, 2011 Thanks, just what I was after! Link to comment https://forums.phpfreaks.com/topic/224497-link-_post/#findComment-1159668 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.