drop down menu using php and mysql [closed]

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

Leave a Comment