<?php session_start(); ?>
<html>
<head>
<title>Comics!</title>
</head>
<body bgcolor="#FFFFFF">
<table border="0" cellpadding="0" cellspacing="4" width="100%" height="100%">
<tr><td width="85%" valign="top">
<?php
$dbh=mysql_connect ("localhost", "trashcan_TheGarb", "geminipwns") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("trashcan_comics");
$sql = "SELECT `username` FROM `users`";
$return = mysql_query ( $sql ) or die ( mysql_error() );
$array = mysql_fetch_array ( $return );
shuffle ( $array );
print_r ( $array );
?>
</center>
</td></tr>
</table>
</body>
</html>