este deveria ser el resultado..pero...no
Código HTML:
Ver original<?php
$path_imagen='../prd/<?php echo $row[0];?>';
$nopath='
<img src ="../prd/header_r1_c1.jpg" width="120" height="125">';
if (file_exists($path_imagen)){
echo '
<img src ="$path_imagen" width="120" height="125">';
} else {
echo $nopath;
}
?>