Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<?php include_once("template/vueHeader.php"); ?>
  <body>
    <?php include_once("template/vueNavbar.php"); ?>
    <div class="container">
      
      <div class="container-fluid">
      <div class="row">
        <div class="col-sm-12 main">
          <h1 class="page-header"><?php echo $page ?></h1>
         <!-- <h2 class="sub-header">Tableau des données pour la ville de Marseille</h2>-->
          <div class="table-responsive">
            <table class="table ville" id="example1">
              <thead>
                <tr>
                  <th>ID</th>
                  <th>Start Time</th>
                  <th>MSISDN</th>
                  <th>Name</th>
                  <th>Procedure Name</th>
                  <th>Category Name</th>
                  <th>Description</th>
                  <th>PLMN Digits</th>
                  <th>Service Name</th>
                   <th></th>
                 
                </tr>
              </thead>
              <tbody>
                <?php
                    $compte = 0;
                    foreach ($countryPlmns as $countryPlmns):
                        $compte++;
                ?>
                <tr>
                 <tr id=<?php echo "che".$countryPlmns['statusCheck']; ?>>
                 <!-- <td><?php echo $compte; ?></td>-->
                  <td><?php echo $countryPlmns['ID']; ?></td>
                  <td><?php echo $countryPlmns['STARTTIME']; ?></td>
                  <td><?php echo $countryPlmns['MSISDN']; ?></td>
                  <td><?php echo $countryPlmns['NAME']; ?></td>
                   <td><?php echo $countryPlmns['procedure_name']; ?></td>
                    <td><?php echo $countryPlmns['CategoryName']; ?></td>
                     <td><?php echo $countryPlmns['Description']; ?></td>
                      <td><?php echo $countryPlmns['PLMNDIGITS']; ?></td>
                       <td><?php echo $countryPlmns['SERVICENAME']; ?></td>
                        <td><a type="button" class="btn btn-default" id=<?php echo "checkstat".$countryPlmns['statusCheck']; ?> <?php echo "onClick=updateColoumn(".$countryPlmns['ID'].")"?> >Check</a></td>
                  
                </tr>
                <?php endforeach; ?>
              </tbody>
            </table>
          </div>
        </div>
      </div>
    </div>
    </div><!-- /.container -->
    <?php include_once("template/vueFooter.php"); ?>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers