I am getting following error when the html form is loaded for the very first time. Once I select the option from dropdown..all works perfectly fine.
Error I get is for th very first time: Notice: Undefined index: dlocation in C:\xampp\htdocs\ds\dsearch.php on line 48
<?php
$queryfilter = "SELECT distinct dlocation FROM desmit";
$resultfilter = mysql_query($queryfilter);
$dlocationfilter=$_POST['dlocation'];
echo $dlocationfilter;
?>
<form name='frmSearch' action='' method='post'>
<select name="dlocation">
<option value="All">All </option>
<?php
while ($line = mysql_fetch_array($resultfilter, MYSQL_ASSOC)) {
?>
<option value="<?php echo $line['dlocation'];?>"> <?php echo $line['dlocation'];?> </option>
<?php
}
?>
</select>