我是 php 的新手。我已经使用 php 编写了自动完成文本框,并且我有一个提交按钮。我没有给出表单操作。
这是我用于自动完成文本框的 HTML 表单代码。这个自动完成文本框选择值
<form method="post" autocomplete="off">
<p>
<b>Theater Name</b> <label>:</label>
<input type="text" name="theater" id="theater" />
</p>
<input type="submit" value="Submit" />
</form>
我有另一个 php 函数,它根据 where 子句检索值。在 where 语句中,我想使用表单中的选定值。
例如:从剧院名称 =“表单值”的剧院中选择地址
如何在php函数中使用表单值?谁能帮助我?
<?php
$con = mysql_connect("localhost","root");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("theaterdb", $con);
$result = mysql_query("SELECT * FROM theter
WHERE theater_name="<!-- This could be value that we get after clicking submit button-->);
while($row = mysql_fetch_array($result))
{
echo $row['thearer_name'];
echo "<br />";
}
?>
提前致谢......