$pagetitle = "Concerts";
include("header.php");
?>
2010 Concerts
| Date |
Venue |
Address |
Time |
mysql_connect("localhost", "carolmon_carolmo", "bunyan52", "carolmon_carol");
mysql_select_db("carolmon_carol");
$result = mysql_query("select * from concerts where date > DATE_SUB(CURDATE(), INTERVAL 2 MONTH) order by date asc");
while($row = mysql_fetch_assoc($result) ) {
?>
|
January 1, 1970 |
|
|
|
}
?>
Additional concert dates for 2010 are being scheduled.
include("footer.php");
?>