Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/09/2008, 19:48
Avatar de Ronruby
Ronruby
 
Fecha de Ingreso: julio-2008
Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 15 años, 9 meses
Puntos: 416
Respuesta: Localhost y Servidor

<?
$consulta="Select * from hoja1 where etapa='$rutas';";
$query = mysql_query($consulta);
$row = mysql_fetch_row($query);
?>

Tienes un punto y coma de mas.

Código PHP:
<? 
$consulta
="Select * from hoja1 where etapa='$rutas'";
$query mysql_query($consulta);
$row mysql_fetch_row($query);
?>