You’re not echoing anything:
<option value="<?php echo $row['eid']?>"><?php echo $row['ename'] ?></option>
Maybe you meant to use the short tag for echo (<?=
), but you didn’t
You’re not echoing anything:
<option value="<?php echo $row['eid']?>"><?php echo $row['ename'] ?></option>
Maybe you meant to use the short tag for echo (<?=
), but you didn’t