|
| We have just now started working on the stats
for the Play 4 game. As of now the database is set-up. Below
is our stat database table. This is the raw form the Play 4 database
is in althought it might not look like much now, this has all
the information in which the site will draw off of. Again, more
to come once we start organizing it and getting all together.
But for now, this is more of a test than anything. |
| |
$sqlGetAllStats = "SELECT * FROM `play4_stats`";
$result = mysql_query($sqlGetAllStats, $conn);
echo "";
echo "| Column | Number | Count | Drought | ";
while ($newArray = mysql_fetch_array($result)) {
$Column = $newArray['Column'];
$Number = $newArray['Number'];
$Count = $newArray['Count'];
$Drought = $newArray['Drought'];
echo "| $Column | $Number | $Count | $Drought | ";
}
echo " ";
?>
|
|
|
|