"; print ""; print "
"; print "
"; print "

"; $sql="SELECT * FROM users ORDER BY last_name"; $result = mysql_query($sql); $nrows = mysql_num_rows($result); if($nrows != 0) { print "

LOGIN-ADMINISTRATION PAGE
"; print ""; print ""; print ""; print ""; print ""; print ""; print ""; print ""; print ""; // print ""; print ""; // print ""; print ""; print ""; print ""; print ""; for($j=0;$j<$nrows;$j++) { $row = mysql_fetch_array($result); $EditURL = "TPGP_Edit.php?ID=" . $row['userid']; $DeleteURL = "TPGP_Delete.php?ID=" . $row['userid']; print "
FUNCTION"; print "ID "; print "First Name"; print "Last Name"; print "Email"; print "Login "; print "URL - Web Page"; // print "MD5 Encrypted Password"; print "Comments"; // print "User Level"; print "Create Date"; print "Last Login"; print "Active
EDIT"; print " DELETE"; print "" . $row["userid"]; print "" . $row["first_name"]; print "" . $row["last_name"]; print "" . $row["email_address"]; print "" . $row["username"]; print "" . $row["url_page"]; // print "" . $row["password"]; print "" . $row["info"]; // print "" . $row["user_level"]; print "" . $row["signup_date"]; print "" . $row["last_login"]; print "" . $row["activated"]; print "\n"; } print "


\n"; print "To Create A New User, click here. To Logoff, click here."; } else{ print "

No Records Located"; print "To Create A New User, click here. To Logoff, click here."; } // mysql_close($dbcon); ?>