Foxpro网站前端 - 无法从下拉列表中读取

时间:2012-06-25 14:51:13

标签: php html foxpro

早上好,  我正在建立一个网站,作为Foxpro前端。除了我的一个下拉框,它必须从另一个Foxpro表中读取名称列表之外,它工作得很好。下拉工作正常,但每当我提交表单时,页面都会重置。

这是我的代码。

<form id="form1" name="form1" method="post" action="">
<form action= "test.php" method="post"?
<label>Provider:
<select name="lstProvider" id="1stProvider">
<?php
require_once('odbc.php');//this file just handles the connection
$strsql= 'SELECT Distinct id,name FROM provider.dbf';
$query = odbc_exec($odbc, $strsql) or die (odbc_errormsg());
while($row = odbc_fetch_array($query))

{
echo "<option value=\"".$row['id']."\">".$row['name']."</option>\n  ";
}
?>
</select>
<input type="submit" />

1 个答案:

答案 0 :(得分:0)

页面顶部有两个<form>标记。

此外,您对我必须与FoxPro合作表示同情。