Usted está en:
Inicio >
Agenda
//Listan de agenda
$sqlAgenda = "SELECT * FROM agenda ORDER BY orden ASC";
// numero de paginas
$start = ($page-1)*$per_page;
$rsCasos2 = mysql_query($sqlAgenda);
$count = mysql_num_rows($rsCasos2);
$pages = ceil($count/$per_page);
$sqlAgenda.= " limit $start,$per_page";
$rsAgenda = mysql_query($sqlAgenda);
if(mysql_num_rows($rsAgenda) > 0){
while($rowAgenda = mysql_fetch_array($rsAgenda)){
?>
}
}else{
echo "No hay eventos en la agenda";
}
?>
if($page > 1){
?>
Anterior |
}
for($i=1; $i<=$pages; $i++){
echo ''.$i.' | ';
}
?>
if($page < $pages){
?>
Siguiente |
}
?>