
19/04/2013, 10:55
|
| | Fecha de Ingreso: abril-2010
Mensajes: 229
Antigüedad: 14 años, 11 meses Puntos: 3 | |
Respuesta: No muestra imagenes explorer Este es el código
<?php
$sql = "SELECT Nombre_logotipo, Width, Heigth FROM logotipos WHERE Id_campana = " . $IDCampana . " AND Tipo = 'HeaderLeft'";
$qry = mysql_query($sql);
while($row=mysql_fetch_object($qry))
{
$Logotipo[$i]=$row->Nombre_logotipo;
$Width[$i]=$row->Width;
$Heigth[$i]=$row->Heigth;
++$i;
echo "<img src=".$Logotipo[$i]=$row->Nombre_logotipo." width='".$Width."' heigth='".$Heigth."'>";
}
?> |