SQL Query不会返回行中的内容(PHP)

时间:2013-01-30 04:04:37

标签: php sql database echo

我的PHP:

<?php

function connectDB($user, $pass) {
    try {   
        return(new PDO("mysql:host=localhost;dbname=Test;", $user, $pass));
    } catch(PDOException $ex) {
        return $ex;
    }
}


$db = connectDB("root", "root");
    if ($db instanceof PDOException) {
        die($db->getMessage());
    }
$query = "SELECT * FROM `TABLE`";
$stmt = $db->prepare($query);
$stmt->execute();
$rows = $stmt->fetch();
foreach($rows as $row) {
    echo $row['VALUE1'];
    echo $row['VALUE2'];
    echo $row['VALUE3'];
}
?>

它只回显每个值的第一个字母。

以下是我的表格:

VALUE1 VALUE2 VALUE3
gomeow book   nothing
other  book   nothing

它只打印出第一行的第一个字母多次 打印出来:ggggggbbbbbbnnnnnn

1 个答案:

答案 0 :(得分:1)

检查您的错误日志,然后尝试使用,然后告诉我 -

$rows = $stmt->fetch(PDO::FETCH_BOTH);
print_r($rows);