 |
|
|

What's all the buzz about? The HEATHEN tour was one of David's best tours, and the reviews were nothing short of stellar. Flip through the archive and see what made the HEATHEN tour so incredible.
|
// includes
include("inc/functions.php");
// generate and execute query
$query = "SELECT id, pubdate, showdate, city, venue, headline, title, binaryref, body, publicationdate, publication, byline, status, members, free FROM tourreviews WHERE status = 1 ORDER BY showdate ASC";
$result = mysql_query($query) or die ("Error in query: $query. " . mysql_error());
// if records present
if (mysql_num_rows($result) > 0)
{
print("
| SHOW DATE | CITY | VENUE | REVIEW FROM | ");
// iterate through resultset
// print article titles
$cnt = 1;
while(list($id,$pubdate,$showdate,$city,$venue,$headline,$title,$binaryref,$body,$publicationdate,$publication,$byline,$status,$members,$free) = mysql_fetch_row($result)){
if (is_int($cnt/2)){
$bgcol = "5A5A5A";
}else{
$bgcol = "434343";
}
$cnt++;
?>
| echo $showdate; ?> | echo $city; ?> | echo $venue; ?> | printf( "%s",$id,$publication) ; ?> |
}
}
// if no records present
// display message
else
{
?>
| There are currently no tour dates available. |
}
?>
 |
 |
 |
 |
include ("redsherrif_site.inc"); ?> |