简单的PDO连接和选择

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的PDO连接和选择相关的知识,希望对你有一定的参考价值。

This is the basic code that you need to know to connect and list data with PDO.
Don't use de old method (mysql_connect and mysqli_connect) to connect and interact with databases.
  1. <?php
  2. /* Connection string */
  3. $db = new PDO('mysql:host=localhost;dbname=YOUR_DB_NAME', 'root', 'YOUR_DB_PASSWORD', array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
  4.  
  5. $stmt = $db->prepare('select * from your_table');
  6. $stmt->execute();
  7.  
  8. // Get all records
  9. $result = $stmt->fetchAll();
  10.  
  11. echo '<pre>';
  12. print_r($result); // Show a data array with results

以上是关于简单的PDO连接和选择的主要内容,如果未能解决你的问题,请参考以下文章

pdo的简单介绍和使用

在postgresql和PDO之间共享连接(psql)

PHP实现的pdo连接数据库并插入数据功能简单示例

在 PDO 准备语句中将查询与 if else 连接

php PHP:PDO片段

php PHP:PDO片段