Пример #1
0
?>


<table class="table-hover">
    <tr>
        <th><b><h3>Nombre</b></h3></th>
        <th><b><h3>Album</b></h3></th>
        <th><b><h3>Artista</b></h3></th>
        <th><b><h3>Duracion</b></h3></th>
        <th><b><h3>Tamaño</b></h3></th>
        <th></th>
    </tr>
    <?php 
$offset = isset($_GET['o']) ? $_GET['o'] : 0;
$num = Track::all(1000);
$numero_filas = Track::total();
?>
    <?php 
foreach (Track::all(10, $offset) as $track) {
    ?>
    <tr id='<?php 
    echo $track->TrackId;
    ?>
'>


      <td>
        <button  class='btn btn-default btn-sm button' type='button' onclick='modalEdit(<?php 
    echo utf8_encode($track->TrackId);
    ?>
)'><?php