Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

PDO İşlemleri #24

@Aquatime

Description

@Aquatime
getMessage(); } / SELECT İŞLEMİ ÖRNEK 1 $sorgu = $db->prepare('SELECT * FROM musteriler'); $sorgu->execute(); $sorgular = $sorgu->fetchAll(PDO::FETCH_ASSOC); foreach ($sorgular as $row) { $musteri_ad = $row["musteri_ad"]; echo $musteri_ad; echo '
'; } echo '
'; // SELECT İŞLEMİ ÖRNEK 2 $sorgu = $db->prepare('SELECT * FROM musteriler'); $sorgu->execute(); while($row = $sorgu->fetch(PDO::FETCH_ASSOC)){ $musteri_ad = $row["musteri_ad"]; echo $musteri_ad; echo '
'; } ?>

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions