mysql怎么提交表 mysql怎么写表

如何通过PHP把html的表单提交到mysql数据库?首先,你得在diaocha.php这个文件 , 接收表单传的值
$radiogroup = isset($_POST['radiogroup'])?$radiogroup:'';
isset用来检测是否有选中提交,然后就是数据库的链接
$con = mysql_connect('localhost','root',''); //三个参数 , 分别是,连接的主机名,mysql的账号,mysql密码
mysql_query('set names utf8'); //设置连接的字符集,如果页面是utf8的编码,就是utf8,如果是gbk的话 , 那就写 set names gbk
mysql_select_db('xxx',$con);nbsp; //xxx就是你要选择的数据库名称
插入数据
$sql = "insert into xxxx set xxx = $radiogroup" //xxxx 是你要插入的表名 , xxx就是字段名
mysql_query($sql);
php mysql 问题 。。怎么提交整个表格??php
include(conn.php);
$n=$_POST[name];
$sql="insert into table (name) values($n)";
$result=mysql_query($sql);
if($result){
echo "scriptalert('成功');window.location.href='https://www.04ip.com/post/aaa.php';";
}
?
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""
html xmlns=""
【mysql怎么提交表 mysql怎么写表】head
meta http-equiv="Content-Type" content="text/html; charset=utf-8" /
titleaaa.php/title
/head
body
form name="form1" method="post" action="aaa.php"
table width="300px"trtdinput name="name" value=""//tdtdinput type="submit" value="https://www.04ip.com/post/提 交"//td/tr/table
/form
/body
/html
比较简单,参考下~
怎么吧表单数据提交到mysql就是这边表单内容填好后提交给PHP,然后php那边接收你这边提交的内容,最后把内容写到数据库
我用dreamweaver制作了一个表单,怎么才能将表单中的数据提交到mysql数据库呢?如何实现连接?一、mysql怎么提交表你首先需要接收表单数据
1 get 接收mysql怎么提交表,或者
2 post接收mysql怎么提交表,或者
3 request接收 。
二、自己处理数据
以下需要你自己查看php手册、或者百度一下几个mysql常用函数
三、连接数据库
四、向数据库插入数据
五、判断是否成功
六、关闭数据库
怎么把表单提交到mysql呢具体方法操作如下mysql怎么提交表:
?php
$hostName = 'yourhost';
$userName = 'yourusername';
$passWords = 'yourpwd';
$conn = mysql_conn($hostName,$userName,$passWords);
if(!$conn){
die('Could not connect: ' . mysql_error());
}
$mysql_select_db('admin',$conn);
$sql="INSERT INTO user_zy (username, name, time,place,type,http,password)
VALUES
('$_POST[username]','$_POST[name]','$_POST[time]','$_POST[place]','$_POST[type]',
'$_POST[http]','$_POST[password]')";
mysql_query($sql,$conn); //这里是添加数据 。
//读取数据
$sql = "select * form user_zy where 1"; //读取所有 。
$sql = "select * form user_zy where id=".$id; //读取某一项 。
$result = mysql_query($sql,$conn);
while($info = mysql_fetch_array($result)){
$arr[] = $info; //$arr 为最后所要读取mysql怎么提交表的值 。
}
可以用var_dump($arr)打印出来看看 。
关于mysql怎么提交表和mysql怎么写表的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

    推荐阅读