我希望用户在 mysql 数据库中选择一个表名,然后我可以通过字段内表单的文本框添加数据。我使用 PHP $_POST[ ] 将表名发送到添加表单。但以添加形式;当我提交添加按钮时;表名已丢失。我进行了很多搜索并测试了会话和常量来保存表名值;但没有得到想要的结果。
任何帮助将不胜感激。
这是选择表名的页面代码:
<form action="change_products.php" method="post" name="select_table">
<select name="edit_products" >
<option <?php if($_POST['edit_products'] == "cabin") echo "selected='selected'"; ?> value="cabin">Cabin case</option>
<option <?php if($_POST['edit_products'] == "cabin_door") echo "selected='selected'"; ?> value="cabin_door">Cabin door</option>
</select>
<input type="submit" value="OK">
</form>
这是“change_products.php”页面中添加表单的代码。
<?
include('functions.php'); //the database info
define('selected_table', $_POST['edit_products']);
?>
<form method="post">
<table>
<tr>
<td>Mark:</td>
<td><input type="text" name="mark" /></td>
</tr>
<tr>
<td><input type="submit" name="add" value="New" /></td>
</tr>
</table>
<?
if (isset($_POST['add']))
{
$mark=$_POST['mark'];
mysql_query("INSERT INTO ".selected_table." (mark) VALUES ('$mark')");
}
?>
</form>