ClaveAudio_Web/bann2_oferta.php

39 lines
1.8 KiB
PHP
Raw Normal View History

<div class="destacado">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="247"><img src="_imgs/d.gif" width="247" height="1" alt=""></td>
<td width="12"><img src="_imgs/d.gif" width="12" height="1" alt=""></td>
<td width="279"><img src="_imgs/d.gif" width="279" height="1" alt=""></td>
</tr>
<tr>
<td width="247" align="center" valign="middle">
<div class="destacado_foto">
<?php
//LOGOTIPO FABRICANTE
$path = '_logos/c/' . $arrayOferta['fab_id'] . '.gif';
if (file_exists($path)) {
echo '<img src="'.$path.'"><br>';
}
?>
<img src="_imgs/d.gif" height="6"><br>
<a href="oferta_ficha.php?id=<?php echo $arrayOferta['id']; ?>"><img src="_ofr/<?php echo $arrayOferta['id']; ?>_247.jpg" border="0" alt=""></a>
</div>
<div class="destacado_precio"><?php echo ($arrayOferta['pvp'] == '-1' ? 'Consultar' : 'Oferta ' . miNumberFormat($arrayOferta['pvp']) . '<span class="euro">&euro;</span>'); ?></div>
</td>
<td width="12"><img src="_imgs/d.gif" width="12" alt=""></td>
<td width="279" valign="top">
<div class="destacado_tipo azul"><?php echo $arrayOferta['nombre']; ?></div>
<div class="destacado_modelo"><a href="oferta_ficha.php?id=<?php echo $arrayOferta['id']; ?>" class="lmod"><?php echo $arrayOferta['nombre']; ?></a></div>
<div class="oferta_texto"><?php if(strlen($arrayOferta['descripcion'])) { echo substr($arrayOferta['descripcion'], 0, 150) . '...'; } ?></div>
<div class="producto_ocasion1"><br />Precio PVP: <?php echo $arrayOferta['pvp'];?> &euro;</div>
</td>
</tr>
</table>
</div>