Hi,
What you get in $show, is actually a msqyl resource ID, which only points to specific parts of the database (guys: Correct me if I am wrong.. I am on the limit of my technical knowledge here!)
Anyway, what you ned to do, is grab the actual selected records from the database:
$query = "SELECT html from users WHERE username='$my_quadrant'";
$show = mysql_query($query);
while ($row=mysql_fetch_array($show))
{
echo "$row[code=html]";
echo "$my_quadrant";
}
If you use select * from... then you can get every single colym this way: Just replace the html in $row
for your colum names