博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
from表单连接数据库
阅读量:5241 次
发布时间:2019-06-14

本文共 1441 字,大约阅读时间需要 4 分钟。

先在你想显示的页面中添加表单用

<from action="index1.php" method="post">    //<from action="index1.php是向index1.php发送表单数据    method="post"   post是传递方式

<input type="text" name="name" placeholder="姓名" required="">

<input type="password" name="mima" required=" " placeholder="密码至少6位数"><p></p>
<input type="text" name="xingbie" placeholder="性别" required="">
<input type="text" name="xibu" placeholder="系部" required="">
<input type="text" name="banji" placeholder="班级" required="">
<input type="text" name="tex" placeholder="电话" required="">

<button>确定</button>

<button>取消</button>

</from>

接下来在index1.中写php代码,

include_once("conn/conn.php"); //引入导入数据库

$name=$_POST["name"];

$mima=$_POST["mima"];
$xingbie=$_POST["xingbie"];                        // 括号里面的值对应前端里面name,post用来收集来自于表单的值存储在$...中
$xibu=$_POST["xibu"];
$banji=$_POST["banji"];
$tex=$_POST["tex"];

$sql="INSERT into user (name,mima,xingbie,xibu,banji,tex)values('$name','$mima','$xingbie','$xibu','$banji','$tex')";

$r=mysqli_query($link,$sql);                   ///INSERT into use括号中输入post中括号中的      values输入$..
if ($r) {
echo ("写入成功");
}else{
echo ("失败");
}

在conn中创建一个conn.php固定的css代码

<?php

$host="localhost";
$db_user="root"; //数据库用户
$db_pass=""; //数据库密码
$db_name="sqlclass1"; //数据库
$timezone = "Asia/Shanghai";

$link=mysqli_connect($host,$db_user,$db_pass,$db_name);

mysqli_query($link,"SET names UTF8");

header("Content-Type: text/html; charset=utf-8");

date_default_timezone_set($timezone); //北京时间
?>

 

转载于:https://www.cnblogs.com/xinxueyou/p/7860383.html

你可能感兴趣的文章
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
百度贴吧图片抓取工具
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
ajax post 传参
查看>>
2.1命令行和JSON的配置「深入浅出ASP.NET Core系列」
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
Android实现静默安装与卸载
查看>>
ef codefirst VS里修改数据表结构后更新到数据库
查看>>
boost 同步定时器
查看>>
[ROS] Chinese MOOC || Chapter-4.4 Action
查看>>
简单的数据库操作
查看>>
解决php -v查看到版本与phpinfo()版本不一致问题
查看>>
iOS-解决iOS8及以上设置applicationIconBadgeNumber报错的问题
查看>>
亡灵序曲-The Dawn
查看>>
Redmine
查看>>