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í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ón 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"> </p>
</body>
</html>