"; PRINT "
"; INCLUDE "header.inc"; PRINT "
"; // CONTENTS BAR // INCLUDE "contents.inc"; PRINT "
Edit Users
"; // MAIN CONTENTS // if ($number < 1) { PRINT "
There are currently no users in the database.
"; } else { PRINT " "; while ($number > $i ) { $user = mysql_result( $result , $i , "userID"); $username = mysql_result( $result , $i , "username"); $name = mysql_result( $result , $i , "name"); $email = mysql_result( $result , $i , "email"); PRINT " "; $i++; } PRINT "
Click a username to edit, or their email address to send them mail
Username Name E-Mail
$username $name $email
"; } // END OF MAIN CONTENTS // PRINT "
"; INCLUDE "footer.inc"; mysql_close(); ?>