Ver Mensaje Individual
  #6 (permalink)  
Antiguo 13/07/2010, 12:27
chavewain2
 
Fecha de Ingreso: junio-2010
Mensajes: 73
Antigüedad: 13 años, 10 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 />";
}

?>