Example #1
0
            Sports
            <small>Control panel</small>
          </h1>
          <ol class="breadcrumb">
            <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
            <li class="active">Dashboard</li>
          </ol>
        </section>
		<?php 
require_once "classes/locations.php";
require_once "classes/db.php";
use play_a_sport\classes\locations;
use play_a_sport\classes\config;
$config = new config();
$locationObj = new locations($config);
$locationsResults = $locationObj->getLocations();
?>
        <!-- Main content -->
        <div class="box-body">
        <table border="1">
        <tr><th>Location Name</th><th>Latitude</th><th>Longtitude</th><th>Edit</th><th>Delete</th></tr>
        <?php 
foreach ($locationsResults as $specificLocation) {
    ?>
				<tr>
				<td><?php 
    echo $specificLocation["location_name"];
    ?>
</td>
				<td><?php 
    echo $specificLocation["latitude"];