Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<?php
$json_data = file_get_contents("berichten.json");
$data = json_decode($json_data, true);
// Initialize $htmlString
$htmlString = "";
foreach ($data as $bericht) {
// Convert Unix timestamp to DateTime object
$dateTime = new DateTime("@{$bericht['timestamp']}");
// Set the desired timezone (GMT+1)
$dateTime->setTimezone(new DateTimeZone('Europe/Amsterdam'));
// Format the date in a readable format
$formattedDate = $dateTime->format('d-m-Y H:i');
$photoHtml = isset($bericht['foto']) ? "<img src='uploads/{$bericht['foto']}' onerror='this.style.display=\"none\"'>" : "";
// Append the HTML string
$htmlString .=
"
<section>
<h1>{$bericht['naam']}</h1>
<h2>{$bericht['bericht']}</h2>
{$photoHtml}
<h3>{$formattedDate}</h3>
</section>
";
}