举个我自己测试的例子:
<BODY>
<HTML>

<title>会员注册 - 添加记录演示</title><br><br><center><font color=green size=3><b>注 册 会 员 表 单</b></font></center>
<br>
<td width="100%" align="center" valign="bottom" height="19" colspan="2"><p>&nbsp;</p>
<p>请仔细填写以下内容:<br>         
    <td width="30%" align="right" height="19">
</p></td>     <p>dbid:
        <input type="text" name='strdbid'/>
      <form name='strdbid' action='add.php' method='GET'>
      </p>
<p>姓名:
  <input  type="text" name="stdname" />
<form name='stdname' action='add.php' method='GET'>
</p>
<p> 学校:
  <input type='text' name='schname' />
<form name='schname' action='add.php' method='GET'><br>
</p>
<td width="30%" align="right" height="19">
&nbsp;
<input class="Button1" id="submit" type="submit" value="登入" name="submit" /><?if (isset($_GET['stdname'])){ $dbid = $_GET['strdbid'];
$stdname = $_GET['stdname'];
$schname = $_GET['schname'];

    if (strlen($strname) > 0) {
  echo ("数据ID:" .$strname."错误!");
  }
else{
$connection = oci_connect("jhzd", "jh57list","shtd","ZHS16GBK");
$query = "insert into web_db values('$dbid','$stdname','$schname')";
$statement = oci_parse ($connection, $query);
oci_execute($statement);
}
 //oci_close($connection);
}
  //return $action
?>
</BODY>
</HTML>
请问:当录入 'yesonking','yesonking','yesonking' 后,为什么在 oracle 数据库 web_db (dbid,stdname,schname ) 中 dbid 数据列没有保存数据?!另外问一个问题: 通常情况下,在按下回车键就等于执行一个 Button 控件的操作,如在完成一个 text 文本框中录入后,希望光标在按下回车键后移到下一 text 文本框 可以实现吗?