通过识别数字汽车输入字段PHP

bnl4lu3b  于 2023-05-05  发布在  PHP
关注(0)|答案(1)|浏览(122)

我有一个查询个人身份代码,它的工作,我已经把一个按钮,输入一个新的记录,为该个人身份代码,但输入不工作,它记录的信息,但没有个人身份
我需要传递个人代码在PHP页面和保存到MySQL

6gpjuf90

6gpjuf901#

你的问题有点模糊,没有一些代码,但我猜你想要这样的东西:

index.html

<!--- use POST instead of GET, to keep "personal identity code" out of the URL  --->
<form action="addRecord.php" method="post"> 

<label for="code">Personal Identity Code: </label>
<input type="text" id="code" name="code" placeholder="1234">
<input type="submit" value="Submit">

</form>

addRecord.php

$code = $_POST["code"];

// your sql query here...

在对输入运行sql查询之前,请确保对输入进行了适当的清理。

相关问题