im not sure what you mean when you said $GET...
heres the code i just tried and it didnt work...
<?php
include("config.php");
include("style.css");
$query = $QUERY_STRING;
$query=mysql_query("SELECT * FROM users WHERE username = '$username'");
$row=mysql_fetch_array($query);
$username=$row["username"];
$realname=$row["realname"];
$location=$row["location"];
$email=$row["email"];
$msn=$row["msn"];
$sig=$row["signature"];
echo("<div style='position:absolute; top:100; left:100; width:800'>");
echo("<h5>$username</h5>");
echo("Real Name: $realname<BR>");
echo("Location: $location<BR>");
echo("Email: $email<BR>");
echo("Msn: $msn<br><HR width='100%'>");
echo("$sig");
echo("</div>");
?>
config.php has all my database connections...would it help you if u had members.php...here it is
<?php
include("config.php");
include("style.css");
$query=mysql_query("SELECT * FROM users");
echo("<div style='position:absolute; top:100; left:100; width:800'>");
while($row=mysql_fetch_array($query))
{
$username=$row["username"];
echo("<a href='/shelta/viewmember.php?$username'>$username</a><BR>");
}
echo("</div>");
?>