0

我的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

4

1 回答 1

1

检查你的错误日志,然后试试这个,然后让我知道 -

$rows = $stmt->fetch(PDO::FETCH_BOTH);
print_r($rows);
于 2013-01-30T04:16:29.023 回答