Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/05/2009, 12:02
diegocespedes
 
Fecha de Ingreso: noviembre-2008
Ubicación: W2.0
Mensajes: 103
Antigüedad: 15 años, 5 meses
Puntos: 1
Respuesta: Parse error: syntax error, unexpected '[' in ruta on line 34

include_once('Admin/bd/db.php');
$sql = sprintf("SELECT * FROM noticias");//LIMIT $limite, 6
$result = mysql_query ($sql,$link);
while($row = mysql_fetch_array($result))
{
@mysql_query("SET NAMES 'utf8'");
$titulo=change(row("titulo"));
$noticia=change(row("noticia"));
$imagen=$row("imagen");
$id=$row("id");
echo '<li><a href="/"><img src="promociones/$imagen" width="75" height="75"/></a>';
echo '<p><a href="index.php?id=$id&body=promociones">$titulo</a><br />$noticia</p></li>';
}