0 ) { list( $db_cprod, $db_descr, $db_pv, $db_iva, $db_notas, $db_fabr, $db_gar, $db_imgH, $db_imgW ) = @mysql_fetch_array( $res ); echo "". "". "
". "$db_descr
"; echo "
Código: $db_cprod". "
Precio: $db_pv €". "
IVA: $db_iva". "
Garantía: $db_gar meses". "
Fabricante: $db_fabr"; echo "
"; if ( $db_imgH > 0 ) { echo ''; } echo "
"; echo "Notas:
".nl2br($db_notas)."


"; } } mysql_free_result($res); mysql_close($conexion); function resize($H, $W) { $nW = 200; $nH = 200; $image_prop = ""; if ( $W > 0 ) { if ( !($W < $nW ||$H < $nH ) ) { if ( $W > $H ) { $nH = intval(($H/$W)*$nW); $image_prop = " width=\"$nW\" height=\"".$nH."\""; } else { $nW = intval(($W/$H)*$nH); $image_prop = " height=\"$nH\" width=\"".$nW."\""; } } else { $image_prop=" width=\"$W\" height=\"$H\""; } } return $image_prop; } ?>