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"); ?>
 
<!-- Bootstrap core JavaScript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
    <script src="common/js/jquery.min.js"></script>
    <script src="common/js/bootstrap.min.js"></script>
    
    <script src="common/js/jquery-1.12.3.js"></script>
    <script src="common/js/jquery.dataTables.js"></script>
    <!--<script src="common/js/dataTables.buttons.min.js"></script>-->
    
    <script>
$(document).ready(function() {
    $('#example1').DataTable( {
       
    } );
} );
 //$('#example1').DataTable( {
       
   // } );
function updateColoumn(id){
    alert(id);
    
    var URL = "/api.php/logsummery/"+id;
        var dataObject = { 'statusCheck':'1' };
        alert(JSON.stringify(dataObject));
        $.ajax({
            url: URL,
            type: 'PUT',    
            data: JSON.stringify(dataObject),
            contentType: 'application/json',
            success: function(result) {
                alert("success?");
                window.location.reload();
                
            }
        });
        
}
</script>   
<!--<script>
$(document).ready(function() {
    var table = $('#example').DataTable( {
        "ajax": "data/arrays.txt",
        "columnDefs": [ {
            "targets": -1,
            "data": null,
            "defaultContent": "<button>Click!</button>"
        } ]
    } );
 
    $('#example tbody').on( 'click', 'button', function () {
        var data = table.row( $(this).parents('tr') ).data();
        alert( data[0] +"'s salary is: "+ data[ 5 ] );
    } );
} );
</script>-->
  </body>
</html>
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers