我将PHP与Oracle数据库结合使用。我想要的是以下内容:在第一个表单上,我想从数据库中的表中选择一个名称,当你按下按钮打开时,我希望用户看到一个html表单,其中的字段填入了来自您在第一个屏幕上选择的人。您可以编辑此信息,当您按下更新按钮时,必须更新表。我不知道在PHP中将这个整个过程与Oracle结合使用。有人可以帮帮我吗?这是我正在做的项目的一个重要部分,我无法在任何地方找到任何信息! 我真的希望有人可以帮助我 PHP& Oracle数据库编辑/更新数据。 <<< ----- here
上的错误Undefined variable: objResult
<?
$objConnect = oci_connect("myuser", "mypassword", "TCDB");
$strSQL = "SELECT * FROM CUSTOMER";
$objParse = oci_parse($objConnect, $strSQL);
oci_execute($objParse, OCI_DEFAULT);
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
<th width="30"> <div align="center">Edit </div></th>
</tr>
<?
while ($objResult = oci_fetch_array($objParse, OCI_BOTH))
{
?>
<tr>
<td><div align="center"><?= $objResult["CUSTOMERID"]; ?></div></td> <<---here
<td><?= $objResult["NAME"]; ?></td> <<---here
<td><?= $objResult["EMAIL"]; ?></td> <<---here
<td><div align="center"><?= $objResult["COUNTRYCODE"]; ?></div></td>
<td align="right"><?= $objResult["BUDGET"]; ?></td> <<---here
<td align="right"><?= $objResult["USED"]; ?></td>
<td align="center"><a href="php_oracle_update2.php?CusID= <?=$objResult["CUSTOMERID"];?>">Edit</a></td>
</tr>
<?
}
?>
</table>
<?
oci_close($objConnect);
?>
答案 0 :(得分:1)
您的while
循环可能仅适用于第一行。确保对每个循环使用{ }
,无论是一行还是多行。
答案 1 :(得分:0)
此错误可能意味着short_open_tag
中未启用php.ini
,并且由于PHP实际上未在您的模板中看到任何代码。只有<?= ... ?>
代码有效,而<? ... ?>
则不然。
您的选择:
short_open_tag = On
。或者,<?php ... ?>
代码此外,while循环未完成。尝试:
<?
while ($objResult = oci_fetch_array($objParse, OCI_BOTH)):
?>
// ...
<?
endwhile;
?>