git-svn-id: https://192.168.0.254/svn/Proyectos.ClaveAudio_Web/trunk@13 44ade383-bb54-5b4f-835b-923f7702b206
39 lines
1.8 KiB
PHP
39 lines
1.8 KiB
PHP
<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">€</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'];?> €</div>
|
|
</td>
|
|
</tr>
|
|
|
|
|
|
</table>
|
|
</div>
|