Código PHP:
include_once("conexion.php");
$con = new DB;
$cliente = $con->conectar();
$strConsulta = "SELECT id_cliente, id_tipocliente, NombreContacto, ApellidosContacto from computo";
$cliente = mysql_query($strConsulta);
$numfilas = mysql_num_rows($cliente);
echo '<table cellpadding="0" cellspacing="0" width="100%">';
echo '<thead><tr><td>Id</td><td>Carrito</td><td>Nombre</td><td>Pdf</td></tr></thead>';
for ($i=0; $i<$numfilas; $i++)
{
$fila = mysql_fetch_array($cliente);
$numlista = $i + 1;
echo '<tr><td>'.$numlista.'</td>';
echo '<td>'.$fila['id_cliente'].'</td>';
echo '<td>'.$fila['NombreContacto'].' '.$fila['id_tipocliente'].' </td>';
echo '<td><a href="reporte_historial.php?id='.$fila['id_cliente'].'">Ver</a></td></tr>';
}
echo "</table>";