Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/01/2015, 15:50
dany97
 
Fecha de Ingreso: enero-2015
Mensajes: 11
Antigüedad: 9 años, 3 meses
Puntos: 0
Paginar resultados.

Hola buenas,
tengo un problema al paginar los resultados de mi tabla clientes.
la cantidad maxima tiene que ser 5.
el que me pueda ayudar, muchas gracias.

<div style="width:700px;position:relative;left:30px;bac kground-color:white" class="table-responsive">
<table class="table">
<h3>Clientes:</h3>
<tr>
<th>Idcliente</th>
<th>Nombre</th>
<th>Apellido</th>


</tr>
<?php
$sql="SELECT * FROM clientes";
$resul = $conn->query($sql);
while ($row=$resul->fetch_array()){
?>
<tr>
<td><?php echo $row["Idcliente"];?></td>
<td><?php echo $row["nombre"];?></td>
<td><?php echo $row["apellido"];?></td>


?>

</tr>