( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ HEX
HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux mail.thebrand.ai 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:51:50 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/brandKit/APIResultsFunction.php
<?php

function fetchAndDisplayAPIResults($apiUrl) {
    $response = file_get_contents($apiUrl);

    if ($response !== false) {
        $data = json_decode($response, true);

        if ($data !== null && isset($data['myphotos']) && is_array($data['myphotos'])) {
            echo '<div class="container">';

            foreach ($data['myphotos'] as $item) {
                $image = $item['picture'];
                $title = $item['title'];

                // Generate the image source URL
                $imageUrl = "https://www.thebrand.ai/taswira.php?width=300&height=300&quality=70&cropratio=2:1&image=/v/uploads/gallery/$image";
                ?>

                <div class="card">
                    <img src="<?php echo $imageUrl; ?>" alt="Business Card Image">
                    <p><?php echo $title; ?></p>
                </div>

                <?php
            }

            echo '</div>'; // Close the container
        } else {
            echo "Invalid JSON data or missing 'myphotos' key.";
        }
    } else {
        echo "Failed to retrieve data from the API.";
    }
}

// Call the function with your API URL
$apiUrl = 'https://www.thebrand.ai/TheBrandZ/brandkit.php?mode=DesignByCategory&category=46';
fetchAndDisplayAPIResults($apiUrl);
?>