Hiyas,
I have a members list page and when a user click on the user name I want it to goto the viewprofile.php and display that persons profile.....
How to I reference from a url?
asin how do I get the user name from a url that they click?
echo "<TD WIDTH='200'>";
echo "<a href='viewprofile.php?user=";
echo $row_items['username'];
echo "' target='_blank'>";
echo $row_items['username'];
echo "</a>";