Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/07/2012, 16:58
charlibi27
 
Fecha de Ingreso: julio-2012
Ubicación: Valencia
Mensajes: 13
Antigüedad: 12 años, 4 meses
Puntos: 1
Error Inesperado T_STRING

Hola a todos , estoy copiando un ejemplo de uploader y me da un error :
syntax error, unexpected T_STRING, expecting ',' or ';' in C:\xampp\htdocs\UploadMultiple\UploaderMultipleMys ql\libs\listadoImagenes.php on line 10

Aquí les dejo el código, por si alguien me ayuda:
<?php

require_once("conexionTutorial.php");
$cn=Conectarse();

$listar= mysql_query("SELECT * FROM tblimagenes WHERE ImagenEstado = 1",$cn);
if (mysql_num_rows($listar)>0)
{
echo "<table class="demotable">";
echo "<caption>LISTADO DE IMAGENES</caption>";
echo "<tr>";
echo "<th>Estado</th>";
echo "<th>Descripcion</th>";
echo "<th>Miniatura</th>";
echo "</tr>";
while($imagen=(mysql_fetch_array($listar)))
{
echo"<tr>";
if($imagen["ImagenEstado"]==1){
echo"<td><img src="images/001_18.png" width="20"></td>";
}
else
{
echo"<td><img src="images/001_19.png" width="20"></td>";
}
echo"<td>".$imagen["ImagenDescripcion"]."</td>";

echo"<td><a href="uploads/".$imagen["ImagenArchivo"]."" "><img src="uploads/".$imagen["ImagenArchivo"]."" width="70" height="50"></a></td>";

echo"</tr>";
}
echo"</table>";
}else
{
echo"<div id="mensajevacio">no existen imagenes registradas</div>";

}
?>