Ahh.. well I have those two pages pretty much setup and formatted how I want/need them. But the most important part... people can update their info, but nobody can see their info
The index page needs to basically be just a table, displaying Username, Real Name (if in their profile) and the given recovery information.
The tricky part, is the only users that should be displayed are people with at least one of the new fields filled out. I don't need a big empty table with all the users who don't enter anything.
That's where I'm really stuck, is how to check for that

Also.. I tried this just real quick to see if I could at least now do this on m own:
code:
$Username_q = addslashes($Username);
$query = "SELECT U_Phonehome,U_Phonework,U_Phonecell,U_Winch,U_Coverage,U_Calltime
FROM {$config['tbprefix']}Users
WHERE U_Username = '$Username_q'";
$sth = $dbh -> do_query($query);
while ( list($HomePhone,$WorkPhone,$CellPhone,$Winch,$Coverage,$Calltime) = $dbh -> fetch_array($sth)) {
echo <<<UBBTPRINT
$HomePhone
$WorkPhone
$CellPhone
$Winch
$Coverage
$Calltime
UBBTPRINT;
}
$html -> send_footer();
$dbh -> finish_sth($sth);
That does work, but only pulls my info, I was hoping the while loop would at least somehow pull everyone's, but I don't know what I'm doing
