mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2024-12-04 18:33:40 +00:00
10 lines
No EOL
190 B
PHP
10 lines
No EOL
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';
|
|
}
|
|
?>
|