Team
Watch out for our team laying down some of the most progressive / aggressive riding at UK Snowboarding events.
include "apples.php";
$tableName = "riders";
$db = @mysql_connect($server,$user,$pass);
if (!$db)
{
do_error("Could not connect to the server, Im sorry") ;
}
$database = @mysql_select_db($database,$db) or do_error ("Could not connect to the admin database Im sorry") ;
$query = @mysql_query("SELECT * FROM $tableName ORDER BY riderID asc");
$total_rows = @mysql_num_rows($query);
while($myridersData = @mysql_fetch_array($query)){
$name = $myridersData["name"];
$age = $myridersData["age"];
$disiplin = $myridersData["disiplin"];
$sponsors = $myridersData["sponsors"];
$img = $myridersData["image_name"];
$detail = $myridersData["detail"];
print ""
//print ""
//
//".$detail. "
//Sponsors: // ".$sponsors."
; " ; } function do_error($error) { echo $error; die; } ?>