input_image.php
<?php
$result = mysql_query("SELECT * FROM image_upload ORDER BY image_id ASC");
$data = mysql_fetch_array($result);
$banner = $data['image_bn'];
?>
<p><img src="../../images/<?php $banner; ?>"></p>
<?php echo $_SESSION[$banner]; ?>
line 13: Notice: Undefined index: adm_banner.jpg in C:\xampp\htdocs\portal\administrator2\admin\input_image.php on line 76
How to fix the error?