Ver Mensaje Individual
  #7 (permalink)  
Antiguo 25/05/2011, 14:12
Avatar de evolutionrgm
evolutionrgm
 
Fecha de Ingreso: mayo-2011
Mensajes: 108
Antigüedad: 13 años, 7 meses
Puntos: 5
Respuesta: Mostrar los cumpleaños del mes

Bueno Estimados a continuacion les comento que me habia equivocado en ingresar datos pero con este codigo podran listar los Cumpleaños del mes espero que les sirva

Cita:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<?php
include 'conexion.php';
conectar();

$my_result = mysql_query ("SELECT * FROM usuarios WHERE MONTH(fechnac) = MONTH(NOW())");
//$my_result = mysql_query ("select * from usuarios where date_format(fechnac, \'%m\') = date_format (now(), \'%m\')");

while ($myrow = mysql_fetch_array($my_result))
{

?>
<table border="1" width="30%" cellpadding="4" cellspacing="0">
<tr>
<td width="100%" bgcolor="#FFCC00"><strong><em><img src="icons/cake.gif" width="17" height="19">Listados de Cumpleaños del Mes</em></strong><b></td>
</tr>
<tr>
<td width="100%">Nombre :<?php echo $myrow["nom"];?> <?php echo $myrow["apellido1"];?><?php echo $myrow["apellido2"];?></td>
</tr>
<tr>
<td width="100%">Fecha de Nacimiento : <?php echo $myrow["fechnac"];?></td>
</tr>
<td width="100%">Establecimiento : <?php echo $myrow["establecimiento"];?></td>
</tr>
<table border="1" width="100%" cellpadding="4" cellspacing="0" bgcolor="#00FF00">
</tr>
</table>
</table>
<br/>

<?php }
desconectar();
?>