PHP SQL Server 連線資料庫(二)

2021-08-13 03:32:21 字數 1431 閱讀 2122

版本:

php5.6 + 

sql server 2014

目標:實現註冊功能。

在test資料庫中新建表login,使用者名稱設定為主鍵。新建資料庫及使用者許可權的設定

php+sql server 連線資料庫(一)

login表的字段如下:

使用登入名wdy,密碼123456,連線test資料庫,**如下:

fun.php

<?php 

trycatch(pdoexception $e)

?>

介面布局,**如下:

index.html

將註冊資訊儲存到login表中,需判斷是否已存在,**如下:

register.php

<?php 

include 'fun.php';

$output = array();

$user = @$_get['xm'] ? $_get['xm'] : ''; //使用者名稱

$xb = @$_get['xb'] ? $_get['xb']:'0'; //性別

$dlmm = @$_get['dlmm'] ? $_get['dlmm']:''; //登入密碼

$nl = @$_get['nl'] ? $_get['nl']:0; //年齡

$nj = @$_get['nj'] ? $_get['nj']:''; //年級

$km = @$_get['km'] ? $_get['km']:''; //科目

// 註冊

if(empty($user))

$sql = "select * from login where xm = '$user'";

$result = $db->query($sql);

if($result->rowcount()!=0)elseelse

} exit(json_encode($output));

?>

執行結果如下:

test資料庫中的login表:

redis連線數合理配置 redis連線數配置多少

redis客戶端連線數 redis通過監聽乙個tcp埠或socket的方式接收來自客戶端的連線,當與客戶端建立連線後,redis內部會進行如下操作 1 客戶端socket會被設定為非阻塞模式,因為redis在網路時間處理上採用的是非阻塞多路復用模型 2 然後為這個socket設定tcp nodela...

檢視Apache的連線數和當前連線數

檢視了連線數和當前的連線數 複製 如下 netstat ant grep ip 80 wc l netstat ant grep ip 80 grep est wc l檢視ip訪問次數 複製 如下 netstat nat grep 80 awk awk f sort uniq c sort nlin...

mysql 太多的連線數 mysql 連線數太多

問題記錄 mysql error 1040 too many connections 解決辦法 1.檢視mysql的最大連線數 mysql show variables like max connections 500 2.檢視伺服器響應的最大連線數 mysql show global status...