git-svn-id: https://192.168.0.254/svn/Proyectos.ClaveAudio_Web/trunk@19 44ade383-bb54-5b4f-835b-923f7702b206
42 lines
1.8 KiB
PHP
42 lines
1.8 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">
|
|
<?php
|
|
//SI TIENE PDF la imagen irá al pdf si no a la ficha
|
|
$path_pdf = '_ocs/' . $arrayOcasion['id'] . '.pdf';
|
|
$path_jpg = '_ocs/' . $arrayOcasion['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 = "ocasion_ficha.php?id=". $arrayOcasion['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 ocasión</a>
|
|
</td></tr></table>
|
|
</div>
|
|
</td>
|
|
|
|
<td width="8"></td>
|
|
<td width="152" valign="top">
|
|
<div class="oferta_marca"><?php echo $arrayOcasion['fab_nombre']; ?><br><span class="tit azul"><?php echo $arrayOcasion['nombre']; ?></span></div>
|
|
<div class="oferta_precio"><?php echo ($arrayOcasion['precio'] == '-1' ? 'Consultar' : miNumberFormat($arrayOcasion['precio']) . '<span class="euro">€</span>'); ?></div>
|
|
<div class="oferta_texto"><?php if(strlen($arrayOcasion['descripcion'])) { echo substr($arrayOcasion['descripcion'], 0, 150) . '...'; } ?></div>
|
|
<div class="producto_ocasion1"><br />Precio PVP: <?php echo $arrayOcasion['pvp'];?> €</div>
|
|
</td></tr>
|
|
</table>
|