Código PHP:
<?php
header("Content-Type: text/html;charset=utf-8");
require_once ("../app/config/myDBC.php");
if(isset($_SESSION['session']))
{
?>
[HTML]<!DOCTYPE html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" href="../estilos/estilo.css" rel="stylesheet" />
<title>Resultados de Busqueda</title>
</head>
<body bgcolor="blue">
<div id="envoltura">
<div id="contenedor">
<div id="cabecera" >
<img src="http://www.forosdelweb.com/f53/imagenes/logo.png">
</div>
<div id="cuerpo">
<?php
//Recibimos en variables los campos de la busqueda
//Con trim quitamos espacios en blanco al inicio y final
$cedula = $_SESSION['session']['cedula'];
if ($cedula = $_SESSION['session']['cedula']){
$mes = trim($_POST['mes']);
$año = trim($_POST['anio']);
$consultas = new myDBC();
$resultados = $consultas->seleccionar_recibo($cedula,$mes,$año);
?>
<?php foreach($resultados as $row){?>
<table border=1>
<td>Cédula:</td><td><?php echo $row['r_mesCedulaE'];?></td>
<tr>
<td>Nombre:</td><td><?php echo $row['r_mesNombreC'];?></td>
</tr>
<tr>
<td>Cargo:</td><td><?php echo $row['r_mesNom_cargoC'];?></td>
</tr>
</table>
<br>
</br>
<table border=1>
<td align="center" colspan="2">Asignaciónes</td>
<tr>
<td><?php echo $row['r_mesDescripcion_conceptoC'];?></td><td><?php echo $row['r_mesAsignacionR'];?></td>
</tr>
<tr>
<td align="center" colspan="2">Deducciónes</td>
</tr>
<tr>
<td><?php echo $row['r_mesDescripcion_conceptoC'];?></td><td><?php echo $row['r_mesDeduccionR'];?></td>
</tr>
<td>Total</td><td><?php echo $row['r_mesTotal_netoR'];?></td>
<tr>
<td>Mes</td><td><?php echo $row['r_mesMesC'];?>
</tr>
<tr>
<td>Año</td>
<td><?php echo $row['r_mesAnoF'];?></td>
</tr>
</table>
<div id="button"><a href="http://www.forosdelweb.com/f53/app/crear_recibo_pdf.php"><h4><img src="http://www.forosdelweb.com/f53/app/imagenes/pdf.png"></a></a></div>
</div><!--fin cuerpo-->
<div id="pie">Sistema de Consulta de Pagos</div>
</div><!-- fin contenedor -->
<div id="button"><a href="http://www.forosdelweb.com/f53/app/salir.php"><h4><img src="http://www.forosdelweb.com/f53/app/imagenes/salir.png"></a>
<a href="http://www.forosdelweb.com/f53/app/principal.php"><img src="http://www.forosdelweb.com/f53/app/imagenes/regresar.png"></a></div>
</div><!--fin envoltura-->
</body>
</html>[/HTML]
<?php
}
}
}else
echo'<script type="text/javascript">
alert("Registrarse para ver este contenido");
window.location="../app/index.php"
</script>';
?>