php query的使用方法是什么

PHP
小億
126
2024-06-06 10:44:20

在PHP中,您可以使用以下方法執(zhí)行查詢:

  1. 使用mysqli擴(kuò)展庫(kù):
// 連接到數(shù)據(jù)庫(kù)
$connection = mysqli_connect("localhost", "username", "password", "database");

// 執(zhí)行查詢
$query = "SELECT * FROM table";
$result = mysqli_query($connection, $query);

// 處理結(jié)果
if(mysqli_num_rows($result) > 0) {
    while($row = mysqli_fetch_assoc($result)) {
        // 處理每一行數(shù)據(jù)
    }
}

// 關(guān)閉數(shù)據(jù)庫(kù)連接
mysqli_close($connection);
  1. 使用PDO擴(kuò)展庫(kù):
// 連接到數(shù)據(jù)庫(kù)
$dsn = 'mysql:host=localhost;dbname=database';
$username = 'username';
$password = 'password';
$connection = new PDO($dsn, $username, $password);

// 執(zhí)行查詢
$query = "SELECT * FROM table";
$result = $connection->query($query);

// 處理結(jié)果
if($result->rowCount() > 0) {
    foreach($result as $row) {
        // 處理每一行數(shù)據(jù)
    }
}

// 關(guān)閉數(shù)據(jù)庫(kù)連接
$connection = null;

使用以上方法,您可以執(zhí)行查詢并處理結(jié)果。記得在查詢中使用參數(shù)化查詢來(lái)防止SQL注入攻擊。

0