13/07/2010, 12:27
|
| | Fecha de Ingreso: junio-2010
Mensajes: 73
Antigüedad: 14 años, 5 meses Puntos: 1 | |
Respuesta: Paginar por semana no funciono que estoy haciendo mal?
<?php
include("connect.php");
$result = mysql_query("SELECT * FROM (orden) WHERE fecha_e = NOW() + INTERVAL 1 WEEK;");
while($row = mysql_fetch_array($result))
{
echo $row['id_pedido'] . " " . $row['fecha_e'];
echo "<br />";
}
?> |