Código PHP:
<?php include('conect.php');
@$cat=$_REQUEST['id'];
$sql8="SELECT * FROM productos WHERE id_cat=$cat";
$sql_exec8=mysql_query($sql8) or die("There was a database error!<br>".mysql_error()."<br><br>The query was: ".HtmlEntities($sql8));;
$row8=mysql_fetch_assoc($sql_exec8);
function escala($url,$base){
$datos = GetImageSize($url) OR die("Imagen no válida");
if ($datos[0]>$datos[1]){
$xp = $datos[0]/$base;
$yp = $datos[1]/$xp;
echo '<img src="'.$url.'" width="'.$base.'" height="'.$yp.'" border="0"/>';}
else{
$yp = $datos[1]/$base;
$xp = $datos[0]/$yp;
echo '<img src="'.$url.'" width="'.$xp.'" height="'.$base.'" border="0"/>';}
}
?>
le coloque la condicion q si la tabla estaba vacia.. y em muestra como si en la tabla no hubiesen datos.. es decir me esta efectuando una consulta vacia no me arroja datos y no entiendo el por que