mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-02-22 15:02:07 +00:00
10 lines
190 B
PHP
10 lines
190 B
PHP
|
<?php
|
||
|
// get useragent header
|
||
|
$user_agent = $_SERVER['HTTP_USER_AGENT'];
|
||
|
|
||
|
if(strpos($user_agent, 'curl') !== false) {
|
||
|
include 'php/curl.php';
|
||
|
} else {
|
||
|
include 'index.html';
|
||
|
}
|
||
|
?>
|