|
     


|
At Recreation Playsystems, we work closely with our customers to help them find the solution that meets
their needs and budget. We understand that choosing the right equipment requires careful consideration and our trained staff
is committed to helping you make the right decision. Click on the titles below to view comments and referrals from a few of
our customers.
Here are a few shots of some of our installed, custom designed systems. Click on an image for a larger photo.
// CONFIGURATION
global $HTTP_GET_VARS;
$cols = 2; // columns number
$table_bg_color = "white"; // table background color
$table_border = "0"; // table border size
$table_width = "350"; // table width
// DO NOT EDIT BELOW
$i =1;
$files = array ();
$myDirectory = opendir("imgs/thumbs");
echo " ";
while ($file = readdir($myDirectory)) {
if (($file != ".") && ($file != "..") && ($file != "index.php") && !(is_dir("imgs/$file")) )
{
$files[] = $file;
if (is_int($i / $cols)) {
list($width, $height) = getimagesize("imgs/$file");
echo "";
?>
echo " ";
echo " | ";
}
else
{
list($width, $height, $type, $attr) = getimagesize("imgs/$file");
echo "";
?>
echo " ";
echo " | ";
}
$i++;
}
}
echo " ";
closedir($myDirectory);
?>
|