 |
|
|

What's all the buzz about? The HEATHEN tour was one of David's best tours, and the reviews were nothing short of stellar. CLICK HERE to flip through the archive and see what made the HEATHEN tour so incredible.
|
Keep tabs on where and when David is playing next with this tour calendar. If you are a Premium BowieNet Member you can purchase advance tickets to any new dates added to this calendar. This calendar is the official source for all confirmed 'HEATHEN tour dates -- accept no imitation. |
|
// includes
include("inc/functions.php");
// generate and execute query
$query = "SELECT id, date, city, venue, price, other, status FROM tourdates ORDER BY date ASC";
run_query($query);
$result = mysql_query($query) or die ("Error in query: $query. " . mysql_error());
// if records present
if (mysql_num_rows($result) > 0)
{
print("
| DATE | CITY | VENUE | OTHER INFO | REVIEWS | ");
// iterate through resultset
// print article titles
$cnt = 1;
while($row = mysql_fetch_object($result)){
if (is_int($cnt/2)){
$bgcol = "5A5A5A";
}else{
$bgcol = "434343";
}
$cnt++;
?>
| echo $row->date; ?> | echo $row->city; ?> | echo $row->venue; ?> | echo $row->other; ?> | READ |
}
}
// if no records present
// display message
else
{
?>
| There are currently no tour dates available. |
}
?>
 |
 |
include ("redsherrif_site.inc"); ?> |