Current File : /home/itiffy/silverservice.melbourne/wp-content/themes/silverservice/price-page.php
<?php
/*Template Name: Pric Page */
get_header();
$page_id = get_the_ID();
?>
    <?php include_once('top.php'); ?>
           
    <!-- BANNER SECTION -->
     
    <!-- /BANNER SECTION -->

    <!-- CONTENT SECTION -->
<div class="about-section clearfix">
<div class="container">
<div class="section01 clearfix">
          <h2>Pricing</h2>
 </div>
<div class="table-responsive">
<table id="price_table" class="table" style="text-align: center;">
<tbody>
<tr>
<th class="nobg" style="text-align: center;">Suburb</th>
<th class="nobg" style="text-align: center;">To CBD</th>
<th class="nobg" style="text-align: center;">To Airport</th>
</tr>
 <?php
if(have_rows('price_listing')): while(have_rows('price_listing')): the_row();
$suburb_name= get_sub_field('suburb_name');
$cbd_price= get_sub_field('cbd_price');
$airport_price= get_sub_field('airport_price');
?>
<tr>
<td class="suburb_name"><?php echo $suburb_name; ?></td>
<td>$<?php echo $cbd_price; ?></td>
<td>$<?php echo $airport_price; ?></td>
</tr>
<?php 
endwhile;
endif;   
?>
</tbody>
</table>
</div>

</div>
</div>
     
    <!--Footer start-->   
    <?php get_footer(); ?>
    
	<?php include_once('commonJs.php');  ?>
</body>
</html>