Cita:
Iniciado por Adler Hola
Usa la función [URL="http://php.net/manual/es/function.file-exists.php"]file_exists[/URL]
Suerte
Igual no me trae resultado,solo me trae la imagen por default. La imagen que traera depende del parámetro.
Quedo asi:
Código PHP:
<?php
$nopath='<img src ="images/nhp.jpg" width="150" height="150">';
$name=$_POST[cedula].".jpg"// Este es el parametro ej:000-0000000-5.jpg
$cadena="../imagc/";
$resultado=$cadena.$name; //aqui esta la ruta compleata
if (file_exists($resultado))
{
echo '<img src ="$resultado" width="155" height="150">'; //aqui no entra?
} else {
echo $nopath; //esta funciona y entra directo
}
?>