/*
Valid region values:
Canada
Eastern
GreatLakes
NorthCentral
Northeast
Northwest
SouthCentral
Southeast
Southern
Southwest
Other
*/
/* How many months before a rink is no longer 'new'? */
$newage=1;
/* declare some relevant variables */
$hostname = "db55a.pair.com";
$username = "rjmarq_r";
$password = "cVhn8WFy";
$rinkstable = "rinks"; /* MySQL table created to store the data */
$regionstable = "regions";
$dbName = "rjmarq_rollerskate";
/* The next two lines determine when a link is no longer "new". Note "new" is defined as
less than $newage months. */
$notnewdate=mktime(0,0,0,date('m')-$newage,date('d'),date('Y'));
$notnew=date('Ymd',$notnewdate);
$notnewdisplay=date('n/j/Y',$notnewdate);
/* make connection to database */
MYSQL_CONNECT($hostname, $username, $password) OR DIE("Unable to connect to database");
@mysql_select_db( "$dbName") or die( "Unable to select database");
if (isset($_GET['region'])) {
switch ($_GET['region']) {
case "Canada":
$region="Canada"; break;
case "Eastern":
$region="Eastern Region"; break;
case "GreatLakes":
$region="Great Lakes Region"; break;
case "NorthCentral":
$region="North Central Region"; break;
case "Northeast":
$region="Northeastern Region"; break;
case "Northwest":
$region="Northwestern Region"; break;
case "SouthCentral":
$region="South Central Region"; break;
case "Southeast":
$region="Southeastern Region"; break;
case "Southern":
$region="Southern Region"; break;
case "Southwest":
$region="Southwestern Region"; break;
case "World":
$region="World"; break;
default:
echo "Region you supplied not understood.\n";
die;
}
}
?>
">
Roller-Skate.org - Club Websites
echo $region . ": ";
$query="select statename from $regionstable where regionname='$region'
order by statename";
/* $query="SELECT state, count(*) FROM $rinkstable,$regionstable
WHERE $regionstable.regionname = '$region' AND
$rinkstable.state = $regionstable.statename and
($rinkstable.datedown>$notnew or $rinkstable.datedown is null) and
$rinkstable.club='Y' GROUP BY state";*/
$statelist=mysql_query($query);
$numstates=mysql_numrows($statelist);
$i=0;
while ($i<$numstates)
{
$statename = mysql_result($statelist,$i,"statename");
echo "$statename";
if ($i<($numstates-1))
{ echo ", "; }
$i++;
}
?>
/* For reference, how many rinks & see also links are in the db? */
$query="select*from $rinkstable,$regionstable where $rinkstable.rectype='R' and
$rinkstable.club='Y' and $rinkstable.datedown is null and
$rinkstable.state=$regionstable.statename and $regionstable.regionname='$region'";
$queryresult=mysql_query($query) or die("Rink query failed--trying to find total # rinks.");
$rinks_total = mysql_numrows($queryresult);
/* Find the number of new rinks */
$newrinks="select*from $rinkstable,$regionstable where
$rinkstable.dateadded>$notnew and ($rinkstable.datedown>$notnew or
$rinkstable.datedown is null) and $rinkstable.club='Y' and
$rinkstable.state=$regionstable.statename and $regionstable.regionname='$region'";
/* print $newrinks; */
$newrinksquery=mysql_query($newrinks) or die("Query to find new rinks failed.");
$numnewrinks=mysql_numrows($newrinksquery);
?>
Total club websites in : echo $rinks_total ?>
New clubs in region since echo $notnewdisplay . ": " . $numnewrinks ?>
This page lists roller skating clubs' websites. I know I'm missing
quite a few, so please email
me (or use this form - it
says "rinks" but it'll work for clubs, too!) with additions! Thanks.
/* make the actual list, by state */
$query = "select state,city,name,link,otherinfo,unix_timestamp(datedown),club,
dateadded, dateupdated, rectype from $rinkstable,$regionstable where
$rinkstable.state=$regionstable.statename and $regionstable.regionname='$region'
order by statename, rectype, city, name";
/* ($rinkstable.datedown>$notnew or $rinkstable.datedown is null) and
and $rinkstable.club='Y'
*/
$rink_result = mysql_query($query) or die("Rink query failed.");
$rinkrows=mysql_numrows($rink_result);
/*echo "$query\n";*/
$i=0;
$oldstate='';
while($i<$rinkrows)
{
$currstate=mysql_result($rink_result,$i,"state");
$datedown=mysql_result($rink_result,$i,"unix_timestamp(datedown)");
$roller_rink=mysql_result($rink_result,$i,"club");
$rectype=mysql_result($rink_result,$i,"rectype");
// Check for new state; if so handle it
if ($currstate <> $oldstate) {
if ($oldstate <> '')
{
if ($statecount==0)
{
echo "
\n";
echo "
No active links - sorry!
\n";
}
echo "
\n";
}
echo "
$currstate
\n";
$statecount=0;
$oldstate = $currstate;
}
// Handle the "See also" records
if ($roller_rink=="Y" and $datedown<=$notnew and $rectype=="A")
{
$name=mysql_result($rink_result,$i,"name");
$link=mysql_result($rink_result,$i,"link");
echo "
See also: ";
echo "$name";
if ($datedown != '') {
echo " ($datedowndisplay - Appears to be down)";
}
echo "
\n";
}
// handle the rink records
if ($roller_rink=="Y" and $datedown<=$notnew and $rectype=="R")
{
if ($statecount==0)
echo "
\n";
$city=mysql_result($rink_result,$i,"city");
$name=mysql_result($rink_result,$i,"name");
$link=mysql_result($rink_result,$i,"link");
$otherinfo=mysql_result($rink_result,$i,"otherinfo");
$dateadded=str_replace('-','',mysql_result($rink_result,$i,"dateadded"));
$dateupdated=str_replace('-','',mysql_result($rink_result,$i,"dateupdated"));
/* handle the otherinfo and datedown fields */
if (trim($otherinfo)<>'')
{
$info = " " . $otherinfo;
if ($datedown <> '')
{ $info .= " (" . date('n/j/Y',$datedown) . " - appears to be down)"; }
}
else
{
if ($datedown <> '')
{ $info = " (" . date('n/j/Y',$datedown) ." - appears to be down)"; }
else
{ $info = ""; }
}
echo "