Development

PHP MySQL PDO select foreach loop

Doing a loop through on a MySQL query is super useful and common. It allows you to make tables, rows and output data inĀ  a controlled manner without doing many connections.

PHP PDO with a prepared statement gives you better security against injections.

Assuming you already have your MySQL PDO connection details set like

$db = new PDO('mysql:host=localhost;dbname=DATABASENAME;charset=utf8mb4', 'USERNAME', 'PASSWORD');
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

Here is how to do a loop on a PDO MySQL select query:

prepare("SELECT `location`, `type` FROM `locations` WHERE `type` = :location_type");
$statement->execute(array(':location_type' => $location_type));
while ($row = $statement->fetch(PDO::FETCH_ASSOC)) {
    $location = $row['location'];
    $type = $row['type'];
    echo "$location has the type $type
"; }

Without a prepared statement query

prepare("SELECT `location`, `type` FROM `locations`");
$statement->execute(array());
while ($row = $statement->fetch(PDO::FETCH_ASSOC)) {
    $location = $row['location'];
    $type = $row['type'];
    echo "$location has the type $type
"; }

This will loop through each of the selected rows and output the `location` and the `type` as a new line due to the break tag (
).

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago