Earlier i was displayed the image by referring current directory. My current directory is '/opt/lampp/htdocs/cms/'. My images was placed in the folder called 'Images' inside the cms folder. So, i have displayed the images by referring "./images/filename.png". Now i have moved the images outside of cms folder. Now i kept the images folder inside htdocs directory. Now i refer the path by '/opt/lampp/htdocs/Images/filename.png'. but now the images was not displayed.
<?php
$ImagePath = "/opt/lampp/htdocs/Images/test1_01.png";
?>
<IMG width="180" height="120" align="right" alt="No Image" src="<?php echo $ImagePath; ?>" />