1:首先要使用PHP的超全局变量 $_GET 和 $_POST 用于收集表单数据(form-data)
2:然后使用INSERT INTO 语句用于向数据库表中插入新记录。
具体示例:
(1)首先创建了一个名为 "Persons" 的表,有三个列:"Firstname", "Lastname" 以及 "Age"。
(2)其次创建一个 HTML 表单,这个表单可把新记录插入 "Persons" 表。
(3)接着当用户点击上例中 HTML 表单中的提交按钮时,表单数据被发送到 "insert.php"。"insert.php" 文件连接数据库,并通过 $_POST 变量从表单取回值。然后,mysql_query() 函数执行 INSERT INTO 语句,一条新的记录会添加到数据库表中。
使用mysql函数mysqli函数连接 *** 作数据可即可,或者使用PDO
使用mysqli步骤:
1. 连接MySQL数据库
2. 判断是否连接成功
3. 选择数据库
(前三步可简写成:$link = @mysqli_connect('localhost', 'root', '', 'lx') or exit('数据库连接失败'))
4. 设置字符集
5. 准备SQL语句
6. 向MySQL服务发送SQL语句
7. 解析处理结果集
8. 释放结果集,关闭数据库连接
案例:
<?phpheader('Content-type:text/htmlcharset=utf-8')
//1.连接数据库服务器 mysqli mysql -u root -p
$link = @mysqli_connect('localhost','root','')
//var_dump($link)
//2.判断连接是否成功 信息提示GBK编码
if(mysqli_connect_errno()){
exit('数据库连接失败原因:'.mysqli_connect_error())
}
//3.选择数据库 连接标识 数据库名称
if(!mysqli_select_db($link, 'wz')){
exit('数据库选择失败')
}
//4.设置字符集
mysqli_set_charset($link, 'utf8')
//5.准备SQL
$username = 'zhangsan'
$password = md5('12345')
$pic = '32545.jpg'
$sql = "insert into user2(uname,password,pic) values('{$username}','{$password}','{$pic}')"
/* echo $sql
exit */
//6.执行SQL
$res = mysqli_query($link, $sql)
//7.判断执行结果
if($res){
//成功
echo '成功'
}else{
//失败
echo '失败'
}
//8.关闭数据库连接
mysqli_close($link)
<html>
<head>
<title>同一个页面中多表单提交</title>
<scripttype="text/javascript">
functionmyCheck1()
{
if(form1.text1.value=="")
{
alert("内容不能为空,请输入内容")
form1.text1.focus()
return
}
form1.submit()
}
functionmyCheck2()
{
if(form2.text2.value=="")
{
alert("内容不能为空,请输入内容")
form2.text2.focus()
return
}
form2.submit()
}
functionmyCheck3()
{
if(form3.text3.value=="")
{
alert("内容不能为空,请输入内容")
form3.text3.focus()
return
}
form3.submit()
}
</script>
</head>
<body>
<formname="form1"method="post"action="#">
表单一:<inputname="text1"type="text">
<inputname="submit1"type="submit"value="提交"οnclick="myCheck1()">
</form>
<formname="form2"method="post"action="#">
表单二:<inputname="text2"type="text">
<inputname="submit2"type="submit"value="提交"οnclick="myCheck2()">
</form>
<formname="form3"method="post"action="#">
表单三:<inputname="text3"type="text">
<inputname="submit3"type="submit"value="提交"οnclick="myCheck3()">
<%
request.setCharacterEncoding("UTF-8")
Stringtext1=request.getParameter("text1")
Stringtext2=request.getParameter("text2")
Stringtext3=request.getParameter("text3")
Stringmessage=""
if(text1!=null)
{
message="你提交了第1个表单,表单内容为:"+text1
}
if(text2!=null)
{
message="你提交了第2个表单,表单内容为:"+text2
}
if(text3!=null)
{
message="你提交了第3个表单,表单内容为:"+text3
}
%>
<h2><%=message%></h2>
</form>
</body>
</html>
扩展资料
在HTML文档中,<form></form>标记对用来定义表单的开始和结束。在表单<form></form>之间嵌入各类表单控件标记(表单元素)——如文本输入框、列表框、单选按钮、提交按钮等——供用户输入信息数据。
表单控件标记和表单<form>标记一起工作,共同发挥作用<form>标记的重要属性。<input>能够演变为表单中许多不同的元素,取决于type属性。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)