<select id="availableFruits" name="availableFruits" multiple size=7 style="width:auto;float:left;" >
<?php $fruitList=$this->fruitList;
foreach ($fruitList as $key => $val)
{
//printf('<option value="%s"><table><tr><td>%s</td><td>%s</td></tr></table></option>',$val,$val,$val);
printf('<option value="%s">%s</option>', $val, $val);
} ?>
</select>
我的图片在路径“public / image /”中。 我想从下拉列表中选择水果,根据选择我想在网页上显示水果图像。