"; PRINT "
"; INCLUDE "header.inc"; PRINT "
"; // CONTENTS BAR // INCLUDE "contents.inc"; PRINT "
Delete User
"; // 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 the Delete button to delete the user, 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(); ?>