Please visit our Tour Message Board or our
Ticket Swap Board. The main tour page is back
Here. If you are looking for
the venue pages, please select your destination from the list below.
$Error = 0;
$ErrorInfo = "";
include_once( 'login.php' );
define( TLOCS, "ebfc_tour_locations" );
$Sql = "SELECT city,date1,page FROM " . TLOCS . " ORDER BY date1 ASC";
$Result = mysql_query( $Sql, $DBLink );
if( !$Result )
{
$Error = 1;
$ErrorInfo = "SQL query failed: " . mysql_error( $DBLink )
. ": $Sql";
}
else if( mysql_affected_rows( $DBLink ) < 1 )
{
$Error = 2;
$ErrorInfo = "No venues are available";
}
while( !$Error && ( $RowSet = mysql_fetch_assoc( $Result ) ) )
{
$Date = $RowSet['date1'];
$City = $RowSet['city'];
$Page = $RowSet['page'];
?>
at
}
if( $Error )
{
echo "$ErrorInfo
";
}
?>