我无法连接我的发送'按钮到我的数据库。我是sql和php的初学者。这是我的表格:
scanResp = helpers.scan(client=es,scroll="5m",query={"query":{"match": {"channel_id": "34"}}},index='stg-index',timeout="10m",size=500)
<form action="#" id="form" method="post" name="form">
<input id="name" name="name" placeholder="Name" type="text" size="50"><br>
<input id="email" name="email" placeholder="Email" type="text"size="50"> <br>
<input id="tlf" name="telephone" placeholder="Telephone" type="text"size="50">
<br>
<label><input type="checkbox"/>Duis tincidunt sed nisi eget tincidunt.</label>
我在哪里插入php并建立连接?
答案 0 :(得分:1)
首先在表单元素的action属性中给出文件名,如
action="file.php"
然后在
这样的表单中添加一个提交按钮<form action="your_file_name.php" id="form" method="post" name="form">
答案 1 :(得分:0)
您发布的代码是纯HTML。 您需要创建一个PHP文件以将数据插入数据库。
然后将表单挂钩到PHP文件:
X.volume._IJKVolume
我建议谷歌:
php插入mysql
php html表单
答案 2 :(得分:-3)
您必须在表单操作中提供文件名,然后您必须在该php文件中写入所有数据库连接代码