如何从PHP中的PDO数组中获取数据?

时间:2015-04-12 20:51:10

标签: php mysql pdo mysqli

我使用mysqli从php中获取mysql到数组的所有数据,我做了如下:

$result = $conn->query($sql);

if ($result->num_rows > 0) {

    $arr = array();

    while($row = $result->fetch_assoc()) {     
       $arr[] = $row;
    }

现在我决定改用其他方式并使用:

$q3 = $conn3->prepare("select...";
    $q3->bindParam(':ad1', $ad1);
    $q3->bindParam(':ad2', $ad2);
    $q3->execute();

$check = $q3->fetch(PDO::FETCH_ASSOC);

if (!empty($check3)){

如何将所有数据提取到阵列,如上例所示?谢谢,抱歉愚蠢的问题,我刚开始用php进行冒险..

0 个答案:

没有答案