?>

    <div class="container sub-body">
      <div class="controls text-align-center margin-top-1">

        <div class="row-fluid">
          <div class="span9 well">
            
            <legend>Etat du réseau</legend>

            <?php 
echo '<table class="margin-top-1 table table-bordered">';
echo '<tr>';
foreach ($magasins as $key => $magasin) {
    $Magasin->setNom($magasin['localisation']);
    if ($Magasin->isAlive()) {
        echo '
                          <td>
                            <center>' . $magasin['localisation'] . '<br><img src="images/design/network.gif">
                             </center>
                           </td>';
    } else {
        echo '
                          <td>
                            <center>' . $magasin['localisation'] . '
                            <br><img src="images/design/warning.png">
                            </center>
                          </td>';
    }
}
echo '</tr>';
 public function alertIsAlive()
 {
     $Magasin = new Magasin();
     $magasins = $Magasin->getMagasins();
     $message = '<br><br><h3>Etat du réseau de La Bourse</h3>';
     foreach ($magasins as $key => $value) {
         $Magasin->setNom($value['localisation']);
         if ($Magasin->isAlive()) {
             $message .= '</p>La caisse : ' . $value['localisation'] . ' est bien connectée</p>';
         } else {
             $message .= '<p>La caisse : ' . $value['localisation'] . ' n\'est <strong>PAS connectée</strong></p>';
         }
     }
     return $message;
 }