Viewing file: users.phtml (1.92 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head> <title>AX msgboard users database</title> <link rel="stylesheet" href="../axess.css?v1" type="text/css" /> </head>
<body> <!--<body bgcolor=#23477 link=#6297A text=beige vlink=#69BA8>-->
<h1>Ax Registered Users Database</h1>
<div id="infoBox"> <p>Use the following format when editing notes on user accounts</p> <p>[date] [topic] [what happened] [account suspended?] [email sent?] [initials]</p> - <br /> <p> 2006.03.09 topic 18232 Said insulting remarks toward another user. Account suspended. Email Sent BR </p> </div>
Choose display mode: <ul id="displayOptions"> <li><a href="<? echo $PHP_SELF; ?>">unregistered users ordered by date</li> <li><a href="<? echo $PHP_SELF,"?mode=1"; ?>">all users ordered by IP-address</a></li> <li><a href="<? echo $PHP_SELF,"?mode=2"; ?>">all users ordered by date</a></li> <li><a href="<? echo $PHP_SELF,"?mode=3"; ?>">all users with profiles</a></li> <li><a href="<? echo $PHP_SELF,"?mode=7"; ?>">Non-unique Email addresses</a> <span style='color:#ff9922;'>New!</span></li> <li><a href="<? echo $PHP_SELF,"?mode=8"; ?>">Duplicate user names (ignoring capitalization)</a> <span style='color:#ff9922;'>New!</span></li> <li><?php echo "<form method=get action=".$PHP_SELF."><input type=hidden name=mode value=5>(part of) username to search: <input type=text name=\"searchname\"><input type=submit value=\"Search!\"></form>"; ?></li> <li><?php echo "<form method=get action=".$PHP_SELF."><input type=hidden name=mode value=6>(part of) email address to search: <input type=text name=\"searchemail\"><input type=submit value=\"Search!\"><span style='color:#ff9922;'>New!</span></form>"; ?></li> </ul>
<?php
require('users.inc');
handle_table(pg_connect("","","","","ax"),"\"users\"");
?>
</body>
</html>
|