在尝试使用 Oracle 10G 网站中的值填充它时,我得到一个空的下拉列表。
出现下拉列表,但其中没有值。我也有错误报告,但没有收到任何错误。
谁能指出我的错误?
<tr>
<td>Unit List</td>
<td>
<select name="unit">
<?php
$conn = oci_connect("user", "password", "db");
$sql = 'select ORGANIZATION_NAME from organization@something';
$stid = oci_parse($conn, $sql);
while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS+OCI_ASSOC))
{
echo "<option value=\"unit1\">" . $row['ORGANIZATION_NAME'] . "</option>";
}
?>
</select>
</td>
</tr>