query($query); // Store image URLs in an array $imageUrls = []; while ($row = $results->fetchArray(SQLITE3_ASSOC)) { $imageUrls[] = $row['image_url']; } // Generate the HTML code for the image slideshow $html = ''; $html .= '
'; foreach ($imageUrls as $index => $imageUrl) { $html .= ""; } $html .= '
'; foreach ($imageUrls as $index => $imageUrl) { $html .= "
"; } $html .= '
'; $html .= '
'; $html .= ''; $html .= ''; // Output the HTML code echo $html; ?>