Jump to content

Link $_POST ?


Drewdle

Recommended Posts

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

<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

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.