php向数据库写数据逻辑

时间:2021-04-30 23:13:43

先写php 文件

1.post请求

1)先确定传进来的数据有值 没有就退出程序

if(!isset($_POST['username'])){

  die('没有传值')

}

2)设config.php (可以不设)

连接数据库mysqli_conect(localhost,root,'');

另写文件可以这么写

<?php

define('HOST','localhost');
define('NAME','root');
define('PASS','');
function connect(){
    $connet = mysqli_connect(HOST,NAME,PASS);//建立数据库连接
    mysqli_select_db($connet,'liaotian99');//选择数据库
    mysqli_query($connet,"set names utf8");//中文
    return $connet;
}

执行这个文件require_once "config.php";

建立连接,引入$connect=connect();

3)如果有连接进行进一步操作

if($connect){

  $sql=数据库语句

  $result=mysqli_query($connect,$sql);//得到的结果

  ...之后的操作

}