sql >> Database >  >> RDS >> Mysql

Gegevens uit MySQL naar json-array halen

Als je dit met PDO wilde doen, dan is hier een voorbeeld:

<?php 
$dbh = new PDO("mysql:host=localhost;dbname=DBNAME", $username, $password);

$sql = "SELECT `id`, `title`, `time`, `start`, `backgroundColor` 
        FROM my_table";

$result = $dbh->query($sql)->fetchAll(PDO::FETCH_ASSOC);
//To output as-is json data result
//header('Content-type: application/json');
//echo json_encode($result);

//Or if you need to edit/manipulate the result before output
$return = [];
foreach ($result as $row) {
    $return[] = [ 
        'id' => $row['id'],
        'title' => $row['title'],
        'start' => $row['start'].' '.$row['time'],
        'backgroundColor' => $row['backgroundColor']
    ];
}
$dbh = null;

header('Content-type: application/json');
echo json_encode($return);
?>


  1. PostgreSQL-kolommen wijzigen die in weergaven worden gebruikt

  2. MySQL verleent privileges aan gebruiker voor database

  3. Hoe een 128-bits nummer op te slaan in een enkele kolom in MySQL?

  4. Een database exporteren met behulp van de opdrachtregel