git-svn-id: https://192.168.0.254/svn/Proyectos.ClaveAudio_Web/trunk@15 44ade383-bb54-5b4f-835b-923f7702b206
27 lines
1.4 KiB
PHP
27 lines
1.4 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="middle" align="center">
|
|
<a href="oferta_ficha.php?id=<?php echo $arrayOfertas['id']; ?>"><img src="_ofr/<?php echo $arrayOfertas['id']; ?>_168.jpg" width="160" border="0"></a>
|
|
</td></tr></table>
|
|
</div>
|
|
</td>
|
|
<td width="8"></td>
|
|
<td width="152" valign="top">
|
|
<div class="oferta_marca"><?php echo $arrayOfertas['fab_nombre']; ?><br><span class="azul"><?php echo $arrayOfertas['nombre']; ?></span></div>
|
|
<div class="oferta_precio"><?php echo ($arrayOfertas['pvp'] == '-1' ? 'Consultar' : miNumberFormat($arrayOfertas['pvp']) . '<span class="euro">€</span>'); ?></div>
|
|
<div class="oferta_texto"><?php if(strlen($arrayOfertas['descripcion'])) { echo substr($arrayOfertas['descripcion'], 0, 150) . '...'; } ?></div>
|
|
<!--div class="producto_ocasion1"><br />Precio PVP: <?php echo $arrayOfertas['pvp'];?> €</div-->
|
|
<?php
|
|
//FOLLETO PDF
|
|
$path = '_ofr/' . $arrayOfertas['id'] . '.pdf';
|
|
if (file_exists($path)) {
|
|
echo "<br/><a href='". $path ."'>Ver folleto PDF </a>";
|
|
}
|
|
?>
|
|
|
|
</td></tr>
|
|
</table>
|