我有这个 HTML 选择选项:
<select>
<option>Married</option>
<option>Single</option>
<option>In a relationship</option>
<option>Forever Alone</option>
</select>
并且 selected 选项基于 MySQL 结果,例如,如果$row['status'] = Married
then<option selected>Married</option>
和其他选项在选项标签上没有“selected”字样。
如何使这个动态选择选项?