当前位置:首页 » 操作系统 » html表单提交数据库

html表单提交数据库

发布时间: 2022-07-15 20:44:32

A. Html页面中form表单怎么把数据提交到数据库

一、php配置Mysql 依、将php安装目录下的php_mysql.dll和MySQL安装目录下的libmysql.dll文件拷贝至c:/windows/system三贰中; 贰、配置php.ini extension=php_gd贰.dll extension=php_mbstring.dll extension=php_mysql.dll extension=php_mysqli.dll 把上面四个。dll的最前面的;去掉 二、php表单提交至数据库的实现过程 依、login.php页面 Name:
Email:
贰、add.php页面 三、conn.php页面 select_db("db_test"); //mysql_query("set name 'gb贰三依贰'"); $conn->set_charset("utf吧"); ?></SPAN

B. 怎么用php把html表单内容写入数据库

1:首先要使用PHP的超全局变量 $_GET 和 $_POST 用于收集表单数据(form-data)

2:然后使用INSERT INTO 语句用于向数据库表中插入新记录。

具体示例:

(1)首先创建了一个名为 "Persons" 的表,有三个列:"Firstname", "Lastname" 以及 "Age"。

<?php
$con=mysql_connect("localhost","peter","abc123");
if(!$con)
{
die('Couldnotconnect:'.mysql_error());
}

mysql_select_db("my_db",$con);

mysql_query("INSERTINTOPersons(FirstName,LastName,Age)
VALUES('Peter','Griffin','35')");

mysql_query("INSERTINTOPersons(FirstName,LastName,Age)
VALUES('Glenn','Quagmire','33')");

mysql_close($con);
?>

(2)其次创建一个 HTML 表单,这个表单可把新记录插入 "Persons" 表。

<html>
<body>

<formaction="insert.php"method="post">
Firstname:<inputtype="text"name="firstname"/>
Lastname:<inputtype="text"name="lastname"/>
Age:<inputtype="text"name="age"/>
<inputtype="submit"/>
</form>

</body>
</html>

(3)接着当用户点击上例中 HTML 表单中的提交按钮时,表单数据被发送到 "insert.php"。"insert.php" 文件连接数据库,并通过
$_POST 变量从表单取回值。然后,mysql_query() 函数执行 INSERT INTO 语句,一条新的记录会添加到数据库表中。

<?php
$con=mysql_connect("localhost","peter","abc123");
if(!$con)
{
die('Couldnotconnect:'.mysql_error());
}

mysql_select_db("my_db",$con);

$sql="INSERTINTOPersons(FirstName,LastName,Age)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";

if(!mysql_query($sql,$con))
{
die('Error:'.mysql_error());
}
echo"1recordadded";

mysql_close($con)
?>

C. html控件submit怎样提交表单到数据库

有用到什么框架吗?
没有框架的话,就只能将你所填写的东西拼接在你所提交的路径上面,
在后台request.getParameter("属性"); 之后再去将信息保存到数据库
连接数据库最基础的方法在网上有很多人回答的。

D. HTML表单提交到数据库

点击按钮提交,可以是提交到一个新页面,也可以提交给它本身去处理,然后链接数据库,再往里写,
图片作为提交按钮<a
href="#"
onClick="addhost.submit()">
<img
src="图片地址"
border="0"
></a>
图片作为重置安钮:<a
href="#"
onClick="addhost.reset()">
<img
src="图片地址"
border="0"
></a>

E. 求助大神,在一个HTML页面上的表单可以提交到数据库中吗

当然可以啊,网上注册账号的页面信息不都是这样实现的吗,看来你学的东西还不多,如果只学习前段相关知识是做不到的,你可以学一个后端语言,比如java,PHP,之类的,

F. 在HTML中,建立一个提交表单页面,提交后可以直接在数据库看见。

<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>

(6)html表单提交数据库扩展阅读

在HTML文档中,<form></form>标记对用来定义表单的开始和结束。在表单<form></form>之间嵌入各类表单控件标记(表单元素)——如文本输入框、列表框、单选按钮、提交按钮等——供用户输入信息数据。

表单控件标记和表单<form>标记一起工作,共同发挥作用<form>标记的重要属性。<input>能够演变为表单中许多不同的元素,取决于type属性。

G. 如何用html表单提交数据库名+名字给php,通过php连接数据库

表单form标签里可以写action参数,指给PHP网址,这样提交后就把表单参数按提交方法传递过去了。

H. html表单怎么实现点击提交按钮提交到sql数据库, 尽量写得详细一点,我是新手,万分感谢,我用的vs2008,急

首先建立数据库sql。创建表。然后再Default.aspx.cs里面。写代码。先连接数据库。再提交数据库的按钮事件里把页面的内容元素一个个对应数据库。点提交即可写入数据库了

I. html+php向数据库提交表单

1:首先要使用PHP的超全局变量 $_GET 和 $_POST 用于收集表单数据(form-data)
2:然后使用INSERT INTO 语句用于向数据库表中插入新记录。
具体示例:
(1)首先创建了一个名为 "Persons" 的表,有三个列:"Firstname", "Lastname" 以及 "Age"。
<?php$con = mysql_connect("localhost","peter","abc123");if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); mysql_query("INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Peter', 'Griffin', '35')"); mysql_query("INSERT INTO Persons (FirstName, LastName, Age) VALUES ('Glenn', 'Quagmire', '33')"); mysql_close($con);?>

(2)其次创建一个 HTML 表单,这个表单可把新记录插入 "Persons" 表。

<html><body> <form action="insert.php" method="post">Firstname: <input type="text" name="firstname" />Lastname: <input type="text" name="lastname" />Age: <input type="text" name="age" /><input type="submit" /></form> </body></html>

(3)接着当用户点击上例中 HTML 表单中的提交按钮时,表单数据被发送到 "insert.php"。"insert.php" 文件连接数据库,并通过 $_POST 变量从表单取回值。然后,mysql_query() 函数执行 INSERT INTO 语句,一条新的记录会添加到数据库表中。

<?php$con = mysql_connect("localhost","peter","abc123");if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("my_db", $con); $sql="INSERT INTO Persons (FirstName, LastName, Age)VALUES('$_POST[firstname]','$_POST[lastname]','$_POST[age]')"; if (!mysql_query($sql,$con)) { die('Error: ' . mysql_error()); }echo "1 record added"; mysql_close($con)?>

J. 如何把 htmlform表单提交到数据库

1:首先要使用PHP的超全局变量 $_GET 和 $_POST 用于收集表单数据(form-data)
2:然后使用INSERT INTO 语句用于向数据库表中插入新记录。

热点内容
安卓怎么录屏别人直播 发布:2025-01-22 12:35:20 浏览:385
1030怎么配置电脑 发布:2025-01-22 12:35:19 浏览:89
sql数据库的端口 发布:2025-01-22 12:20:02 浏览:362
安卓最终幻想8怎么设置中文 发布:2025-01-22 12:19:23 浏览:651
怎么查电脑配置和网络 发布:2025-01-22 12:19:16 浏览:586
linuxsnmp查看 发布:2025-01-22 12:17:49 浏览:37
安卓数据线怎么接蓝牙 发布:2025-01-22 12:07:29 浏览:229
扣扣账号多少次密码不正确会被封 发布:2025-01-22 12:07:19 浏览:400
python是32位还是64位 发布:2025-01-22 11:51:41 浏览:894
铃声多多缓存文件夹 发布:2025-01-22 11:51:39 浏览:724