連線資料庫:
$mysql_server_name="localhost"; //資料庫伺服器名稱
$mysql_username="root"; // 連線資料庫使用者名稱
$mysql_password="root"; // 連線資料庫密碼
$mysql_database="lxr"; // 資料庫的名字
// 連線到資料庫
$conn=mysql_connect($mysql_server_name, $mysql_username,
$mysql_password);
// 從表中提取資訊的sql語句
$strsql="select * from personal_info";
// 執行sql查詢
$result=mysql_db_query($mysql_database, $strsql, $conn);
// 獲取查詢結果
$row=mysql_fetch_row($result);
建立資料庫:
$conn = mysql_connect("localhost","root","password") or die("無法連線資料庫");
mysql_create_db("webjx") or die("無法建立資料庫");
$sqlstr = "create database other_webjx";
mysql_query($sqlstr) or die("無法建立,一般請檢查許可權什麼的");
建立表:
$conn = mysql_connect("localhost","root","password") or die("無法連線資料庫");
mysql_select_db("webjx",$conn) or die("無法連線資料庫webjx");
$sql = "create table webjx_table(
ids integer not null auto_increment ,
primary key(ids)
)";
$mysql_query($sql) or die(mysql_error());
php連線mysql資料庫
只寫了簡單的連線資料庫的 以及從資料庫中查詢資料 uname admin conn mysql connect localhost root 123 user db mysql select db books conn sql select from userlogin where username...
PHP連線MYSQL資料庫
php連線mysql比其他語言連線資料庫要方便的多,不像c 連線sql server似的那麼麻煩,還要匯入動態鏈結庫之類的。而php連線mysql只要你正確安裝安裝包套裝之後,預設情況下系統已經把該配置的都給配置好了,你只需要呼叫幾個函式即可。而且php是弱型別語言,也就是它不會像c那樣有嚴格的資料...
php連線mysql資料庫
1.連線伺服器 mysql connect string hostname string username string password 2.關閉資料庫 mysql close 3.選擇資料庫 mysql select db string database name,resource id res...