- MySQLi 教程
- MySQLi - 主頁
- MySQLi - 介紹
- MySQLi - PHP 語法
- MySQLi - 連線
- MySQLi - 建立資料庫
- MySQLi - 刪除資料庫
- MySQLi - 選擇資料庫
- MySQLi - 建立表
- MySQLi - 刪除表
- MySQLi - 插入查詢
- MySQLi - 選擇查詢
- MySQLi - where 子句
- MySQLi - 更新查詢
- MySQLi - 刪除查詢
- MySQLi - like 子句
- MySQLi - 排序結果
- MySQLi - 使用連線
- MySQLi - 處理 NULL 值
- 獲取和使用 MySQLi 元資料
- MySQL
- MySQL - 安裝
- MySQL - 管理
- MySQL - 資料型別
- MySQL - 正則表示式
- MySQL - 事務
- MySQL - Alter 命令
- MySQL - 索引
- MySQL - 臨時表
- MySQL - 克隆表
- MySQL - 使用序列
- MySQL - 處理重複值
- MySQLi 有用資源
- MySQLi - 有用函式
- MySQLi - 快速指南
- MySQLi - 有用資源
- MySQLi - 討論
MySQLi - 即時連線
語法
bool mysqli_real_connect ( mysqli $link [, string $host [, string $username [, string $passwd [, string $dbname [, int $port [, string $socket [, int $flags ]]]]]]] )
定義和用法
它開啟與 MySQL 伺服器的連線。
示例
試用下列示例 −
<?php
$servername = "localhost:3306";
$username = "root";
$password = "";
$dbname = "TUTORIALS";
$conn = new mysqli($servername, $username, $password, $dbname);
if (!$conn->real_connect($servername, $username, $password, $dbname)) {
die('Connect Error (' . mysqli_connect_errno() . ') '. mysqli_connect_error());
}
echo 'Success... ' . mysqli_get_host_info($conn) . "\n";
$stmt = $conn->prepare("INSERT INTO tutorials_auto (id, name) VALUES (?, ?)");
$stmt->bind_param("is", $id, $name);
$id = "10";
$name = "sai";
$stmt->execute();
echo "New records created successfully";
$stmt->close();
if ($result = $conn->query("SELECT name FROM tutorials_auto LIMIT 10")) {
printf("Select returned %d rows.\n", $result->num_rows);
$result->close();
}
$conn->close();
?>
以上程式碼的示例輸出應該如下 −
Success... localhost:3306 via TCP/IP New records created successfullySelect returned 3 rows.
mysqli_useful_functions.htm
廣告