腳本模式
sql
1盈电,設(shè)置編碼
set names utf8;
2蝴簇,添加已刪除的數(shù)據(jù)庫
drop database if exsits
3,創(chuàng)建一個數(shù)據(jù)庫
create database 庫名 chearset=utf8;
4匆帚,進(jìn)入數(shù)據(jù)庫
use 庫名
5熬词,創(chuàng)建一個數(shù)據(jù)表
create tables 表名 {
id int primary key auto_increment;
sss varchar();
}
6,寫入數(shù)據(jù)
insert into 表名 values ();
7吸重,查看表格
select * from 表格互拾;
php
<?php
寫數(shù)據(jù)
$log=$_request['log'];
連接數(shù)據(jù)庫
$conn=mysqli_connect('127.0.0.1','root','密碼','庫名','3306');
設(shè)置編碼
$sql='set names utf8'
把數(shù)據(jù)庫和編碼連接
$mysqli_query($conn,$sql);
刪除某個編號
$mysqli='delete from 表名 where pid='$pid'
執(zhí)行插入語句
$sql="insert into 表名 values(mull,'$log','$log1')";
把數(shù)據(jù)和插入內(nèi)容連接
$result=mysqli_query($conn,$sql);
判斷
if($result===true){
echo '插入成功'
}else{
echo '插入失敗'
}