dongliyi967823 2014-10-17 03:04
浏览 271
已采纳

如何从php中获取数据库中的所有数据

Here is my code:

<?php

/*** mysql hostname ***/
$hostname = 'localhost';

/*** mysql username ***/
$username = 'root';

/*** mysql password ***/
$password = '';

try {
    $dbh = new PDO("mysql:host=$hostname;dbname=sample", $username, $password);
    /*** echo a message saying we have connected ***/
    echo 'Connected to database <br />';

$sql = "SELECT * FROM sampletable";

$stmt = $dbh->query($sql);
$result = $stmt->fetch(PDO::FETCH_ASSOC);

foreach($result as $key =>$val){

echo $key. '-' .$val.'<br />';

}
$dbh = null;

    }
catch(PDOException $e)
    {
    echo $e->getMessage();
    }
?>

Now i am learning php, I want know about pdo connection to insert,update fetch data from database. I referred this link http://www.phpro.org/tutorials/Introduction-to-PHP-PDO.html#7.1

Now i got first column value.. May i know how to fetch all the records from database?

Thanks in advance.

展开全部

  • 写回答

4条回答 默认 最新

  • douxing8855 2014-10-17 03:08
    关注

    You could just use ->fetchAll() method with this:

    $result = $stmt->fetchAll(PDO::FETCH_ASSOC); // returns all rows
    foreach($result as $key => $row) {
        echo $row['id'] . ' - ' . $row['column_name'] . '<br/>';
                         // ^ name of the column, this returns a multi dimensional
    }
    

    Sidenote: Its still an array inside, so you need to access the index of that copy inside the foreach.

    Or also like this:

    while($row = $result->fetch(PDO::FETCH_ASSOC)) {
        echo $row['id'] . ' - ' . $row['col1'] . '<br/>';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部