PHP 有一個很重要的功能是將資料存到資料庫,今天就來介紹如何存入資料庫
MYSQL 資料庫基本的連線方式
<?php
$server = 'localhost'; //主機
$db_username = 'XXXXXX'; //資料庫用户名
$db_password = 'XXXXXX!'; //資料庫密碼
$db_tables = 'XXXXXX';//資料庫名稱
$con = mysqli_connect($server, $db_username, $db_password, $db_tables);
if (!$con) {
$response = array("success" => false, "text" => "MySQL!");
echo json_encode($response);
exit();
}
mysqli_query($con,"set names utf8");
date_default_timezone_set('Asia/Taipei');
?>
對資料庫做增刪改查的方式
/**單筆資料庫查詢**/
$sql = " SQL語法 ";
$result = mysqli_query($con,$sql) or die('MySQL query error');
$row = mysqli_fetch_array($result);
/**多筆資料庫查詢**/
$sql = " SQL語法 ";
$result = mysqli_query($con,$sql) or die('MySQL query error');
while($row = mysqli_fetch_array($result)){
}
/**新增、刪除、修改資料庫**/
$sql = " SQL語法 ";
$result = mysqli_query($con,$sql) or die('MySQL query error');
以上是PHP 連線資料庫的方法 , 今天Day 7 就到這囉~