Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/06/2008, 09:37
Avatar de a83
a83
 
Fecha de Ingreso: noviembre-2005
Ubicación: Santiago de chile
Mensajes: 637
Antigüedad: 18 años, 5 meses
Puntos: 1
Pregunta comole ago para que me muestre 15 registros

hola como estan como le puedo hacer para que me muestre los registros de 15 en 15 para que no mes los muestre todos de una sona bes este es el codigo quetengo



Código PHP:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
</script>
<script type="text/javascript" src="../tablecloth/tablecloth.js"></script>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento sin t&iacute;tulo</title>
<link href="../css/tablecloth.css" rel="stylesheet" type="text/css" />
<link href="../css/admin.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.Estilo2 {
    font-size: 18px;
    color: #003366;
}
-->
</style>
</head>
<body>
<h6 class="down Estilo2">Asignaci&oacute;n &nbsp;Turnos Trabajadores</h6>
<table width="75" height="34" border="0" align="left" cellpadding="1" cellspacing="1" class="down">
<tr><td><b>Rut</td> <td><b>Nombre</td> <td><b>Apellidos</td>
  <tr>
<?
 
//header("Pragma: no-cache"); 
include ("../jao/conexion.php");
$db mysql_connect($server$dbuser$dbpass); 
$sql="Select * from tblEmpleados ";
$result=mysql_db_query($database,$sql,$db);
while(
$row mysql_fetch_array($result)) { 
$Nombre $row["Nombre"];
echo 
' <tr><td><a href="ver.php?id_Empleaos='.$row["id_Empleados"].'">'.$row["Rut"].'</a></td><td>'.$row["Nombre"].'</td><td>'.$row["Apellido"]; 

?>

</table> 
<!--<a href="newar.php">Escribir Articulo</a> 
-->  
</table>
<p class="left">&nbsp;</p>
</body>
</html>