PHP實現連線資料庫

2022-08-23 00:51:14 字數 1883 閱讀 6113

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

title

>title

title

>

head

>

<

body

>

<

form

action

="php連線資料庫.php"

method

="post"

>

使用者名稱:

<

input

type

="text"

name

="username"

><

br />

密 碼:

<

input

type

="password"

name

="password"

><

br />

重複輸入密碼:

<

input

type

="password"

name

="repassword"

><

br />

<

input

type

="submit"

value

="提交"

>

form

>

body

>

html

>

<?php

//對兩次輸入的密碼進行判斷 如果符合判斷條件 則退出程式

if ($_post["password"] != $_post["repassword"])

//獲取所輸入的使用者名稱

$username=$_post["username"];

//獲取所輸入的密碼

$password=$_post["password"];

//定義時間變數

$time=date("ymdhis");

//獲取所訪問的ip位址

$ip=$_server["remote_addr"];

//連線資料庫

$lianjie=mysqli_connect('10.0.0.201','root','123456');

//判斷是否成功連線資料庫 若判斷條件生效即沒有連線到資料庫則退出程式

if (mysqli_errno($lianjie

))

//定義所連線的庫名

mysqli_select_db($lianjie,'test');

//定義字元型別

mysqli_set_charset($lianjie,'utf8');

//使用sql語句向test**中新增內容

$sql="insert into test(name,password,time,ipaddress) values('".$username."','".$password."','".$time."','".$ip."');";

//將是否新增成功的結果定義為變數

$result=mysqli_query($lianjie,$sql

);

//判斷是否成功輸入資訊

if ($result

)else

//退出剛才開啟的資料庫

mysqli_close($lianjie

);?>

PHP實現連線資料庫4

上次我們說到php對資料庫的刪除操作,接下來我們就簡單的說下資料庫的查詢,首要一條完整的查詢語句是 select 欄位名 from 表名 where group order limit 這是一條簡單但較為完整的一條查詢語句同樣我們需要乙個select方法 如下 public function sel...

php連線資料庫

create table message id tinyint 1 not null auto increment,user varchar 25 not null,title varchar 50 not null,content tinytext not null,lastdate date n...

php連線資料庫

天貓內部優惠券 設定資料庫變數 db host localhost 資料庫主機名稱,一般都為localhost db user root 資料庫使用者帳號,根據個人情況而定 db passw 資料庫使用者密碼,根據個人情況而定 db name test 資料庫具體名稱,以剛才建立的資料庫為準 連線資...