I was trying get Dropdown option result in a list with respective image, but that gives other than picture...here is my partial codes, any suggestion Bro?
<?php
$university=$_GET['university'];
$sql=mysql_query("SELECT univ FROM university WHERE univ='$university'");
while($row=mysql_fetch_assoc($sql)){
?>
<li>
<select>
<option value='<?php echo $row['univ'] ;?>'>
<?php echo $row['univ'] ;?> <?php echo '<img src=abu.png width:"20"height="20">';?>
</option>
</select>
</li>
<?php
}
?>