Ver Mensaje Individual
  #17 (permalink)  
Antiguo 30/07/2009, 19:32
condor_cani
 
Fecha de Ingreso: julio-2009
Mensajes: 22
Antigüedad: 14 años, 11 meses
Puntos: 1
Respuesta: No se como llamar a la extension?

AHORA SI

Código PHP:
if (file_exists("imagen/".$id.".jpg")) {
    
$foto1="imagen/".$id.".jpg";
} elseif (
file_exists("imagen/".$id.".pdf")) {
    
$foto1=$id.".pdf";
} elseif (
file_exists("imagen/".$id.".doc")) {
    
$foto1=$id.".doc";
} elseif (
file_exists("imagen/".$id.".xls")) {
    
$foto1=$id.".xls"
} elseif (
file_exists("imagen/".$id.".ppt")) {
    
$foto1=$id.".ppt"
};

$img="paginas/".$id.".jpg";
if (
file_exists($foto1) and $foto1==$img){
                    
$n="";
                    
$s="<img src=".$foto1." height='111' width='147'/>";
                }
                elseif (
file_exists($foto1) and $foto1!=$img){
                    
$n="";
                    
$s=$foto1;}