ClaveAudio_Web/bann_oferta_home.php
2011-06-16 17:40:51 +00:00

47 lines
1.9 KiB
PHP

<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="160">
<div class="oferta_foto">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr><td valign="top" align="center">
<?php
//SI TIENE PDF la imagen irá al pdf si no a la ficha
$path_pdf = '_ofr/' . $arrayOfertas['id'] . '.pdf';
$path_jpg = '_ofr/' . $arrayOfertas['id'] . '_168.jpg';
if (!file_exists($path_pdf))
$path_pdf = "";
if (!file_exists($path_jpg))
$path_jpg = "";
if ($path_pdf != "") {
$enlace = $path_pdf;
}
else
$enlace = "oferta_ficha.php?id=". $arrayOfertas['id'];
?>
<a href="<?php echo $enlace; ?>">
<?php
if ($path_jpg != "") {
?>
<img src="<?php echo $path_jpg; ?>" width="160" border="0"></a><br />
<?php } ?>
<a href="<?php echo $enlace; ?>">Ver oferta</a>
</td></tr></table>
</div>
</td>
<td width="8"></td>
<td width="152" valign="top">
<div class="tit azul"><?php echo $arrayOfertas['nombre']; ?></div>
<?php $longitud=50;
if (($arrayOfertas['pvp']=="") || ($arrayOfertas['pvp']==0)) {
$longitud=70;
}
else {?>
<div class="oferta_precio"><?php echo ($arrayOfertas['pvp'] == '-1' ? 'Consultar' : miNumberFormat($arrayOfertas['pvp']) . '<span class="euro">&euro;</span>'); ?></div>
<?php } ?>
<div class="oferta_texto"><?php if(strlen($arrayOfertas['descripcion'])) { echo substr($arrayOfertas['descripcion'], 0, $longitud); } ?><a href="oferta_ficha.php?id=<?php echo $arrayOfertas['id']; ?>" class="mas">[+]</a>
</div>
</td></tr>
</table>