88 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?PHP include("config.php");
 | 
						|
require_once("class/rating/classes/include.all.php");
 | 
						|
include("class/rating/int.to.words.php");
 | 
						|
 | 
						|
$results = mysql_query("SELECT regionlong FROM ".$prefix."FittersRegions WHERE regionid = ".intval(mysql_escape_string($_GET[region]))." LIMIT 1") OR die ( header('Location: '.$site_url.'?mysql_error'));
 | 
						|
 | 
						|
if (mysql_num_rows($results) == 0) {
 | 
						|
  header('Location: '.$site_url.'?mysql_error');
 | 
						|
}
 | 
						|
 | 
						|
$row = mysql_fetch_array($results);
 | 
						|
$regionname = $row[regionlong];
 | 
						|
 | 
						|
$results = mysql_query("SELECT gf.fitter_id, gf.fitter_name, gf.fitter_address, gf.fitter_address_two, gf.fitter_city, gf.fitter_state, gf.fitter_zip, gf.fitter_phone, gf.fitter_fax, gf.fitter_email, gf.fitter_website, gf.fitter_certifications, gf.fitter_fitbikes
 | 
						|
FROM ".$prefix."Fitters AS gf
 | 
						|
RIGHT JOIN ".$prefix."FittersStates AS gts
 | 
						|
ON gts.regionid = '".intval(mysql_escape_string($_GET[region]))."' AND gf.fitter_state_tag = gts.statetag
 | 
						|
WHERE gf.fitter_valid = 1 ORDER BY gf.fitter_name ASC") OR die(mysql_error());
 | 
						|
 | 
						|
$none = FALSE;
 | 
						|
if (mysql_num_rows($results) == 0) {
 | 
						|
  $none = TRUE;
 | 
						|
}
 | 
						|
 | 
						|
// set the page title
 | 
						|
$pagetitle = $regionname;
 | 
						|
$selected_item = mysql_escape_string($_GET[region]);
 | 
						|
 | 
						|
// set meta tags
 | 
						|
$meta_keywords = "bike fitters in ".$regionname;
 | 
						|
$meta_description = "Trying to find bike fitters in ".$regionname."? Here is a listing of all ".$regionname." bike fitters.";
 | 
						|
?>
 | 
						|
 | 
						|
<? include("include_common_head.php"); ?>
 | 
						|
<body class="listings">
 | 
						|
  <? include($common_path . "/ads/ad_wallpaper.html"); ?>
 | 
						|
 | 
						|
  <div class="container">
 | 
						|
    <? include($common_path . "/templates/include_header.php"); ?>
 | 
						|
    <div class="main">
 | 
						|
      <div class="contentwrapper clearfix">
 | 
						|
 | 
						|
        <? include("include_breadcrumb.php"); ?>
 | 
						|
 | 
						|
        <section class="section listings section-has-widgets section-static remove-sidebar">
 | 
						|
          <div class="sidebar-b">
 | 
						|
            <? include("include_sidebar.php"); ?>
 | 
						|
          </div>
 | 
						|
 | 
						|
          <div class="content content-has-widgets">
 | 
						|
            <div class="grid">
 | 
						|
 | 
						|
              <div class="clearfix">
 | 
						|
                <h1 class="float-left">Bike Fitters</h1>
 | 
						|
                <a href="<? echo $site_url ?>" class="btn btn-white float-right">Back</a>
 | 
						|
                <? if (is_logged_in($user)) { ?>
 | 
						|
                <a href="<? echo $site_url . "/add.php" ?>" class="btn btn-white float-right">Add Fitter</a>
 | 
						|
                <? } ?>
 | 
						|
                <hr class="line" />
 | 
						|
                <? include("../runshops/include_region_list.php"); ?>
 | 
						|
 | 
						|
                <h2><? echo $regionname ?> Region</h2>
 | 
						|
                <hr />
 | 
						|
 | 
						|
                <?
 | 
						|
                if($none == TRUE){
 | 
						|
                    echo "No bike fitters have been entered yet for $regionname.";
 | 
						|
                }
 | 
						|
                ?>
 | 
						|
 | 
						|
                <? while($row = mysql_fetch_array($results)) {
 | 
						|
                    include("include_store.php");
 | 
						|
                } ?>
 | 
						|
 | 
						|
              </div><!-- end col-2/3 -->
 | 
						|
            </div><!-- end grid -->
 | 
						|
          </div><!-- end content -->
 | 
						|
        </section>
 | 
						|
          
 | 
						|
      </div><!-- end contentwrapper -->
 | 
						|
    </div> <!-- end main -->
 | 
						|
 | 
						|
  <? include($common_path . "/templates/include_footer.php") ?>
 | 
						|
  </div> <!-- container  -->
 | 
						|
</body>
 | 
						|
<? include($common_path . "/templates/include_global_js.php") ?>
 | 
						|
</html>
 |