having trouble with the display still…
Function –
[php]<?php
function getEliteEvents() {
global $dbprefix;
$i = 0;
$query = “SELECT * FROM {$dbprefix}elite WHERE status = ‘0’ ORDER BY id ASC”;
$result = mysql_query($query)
or die(mysql_error());
while($row = mysql_fetch_array($result))
{
extract($row);
$events[$i][0] = $id;
$events[$i][1] = $name;
$events[$i][2] = $gamemode;
$events[$i][3] = $date;
$events[$i][4] = $time;
$events[$i][5] = $result;
$events[$i][6] = $players;
$i++;
}
return $events;
}
?>[/php]
file –
[php]<?php
echo "
| Elite Ops: Upcoming |
";
$events = getEliteEvents();
foreach($events as $elite) {
echo "
$elite[1] $elite[2] $elite[3] $elite[4]
|
";
}
echo “
”;
?>php]
Results:
Elite Ops: Upcoming
Head Hunters
Hc KC
June 29th
2-5pm EST
just the first one again… :-[