參考網址:程式前沿
try{ $pdo=new PDO('mysql:host=localhost;dbname=alpha','root','password'); }catch(PDOException $e){ echo "資料庫連線失敗,原因是:".$e->getMessage(); } //從資料庫中選擇資料,並將結果賦予一個變數,testtable為資料庫表 $result=$pdo->query('select id,name,age from testtable'); //將查詢出的資料輸出 while($row=$result->fetch()){ echo "ID:".$row['id']; echo "NAME:".$row['name']; echo "AGE:".$row['age']; }