-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.php
26 lines (24 loc) · 855 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?
// ===================================================================
// Sim Roulette -> INDEX
// License: GPL v3 (http://www.gnu.org/licenses/gpl.html)
// Copyright (c) 2016-2022 Xzero Systems, http://sim-roulette.com
// Author: Nikita Zabelin
// ===================================================================
include("_func.php");
sr_header("SR Navigator");
?>
<br>Панель управления СИМ-агрегаторами SIM Roulette
<br>
<br>
<?
$ch = curl_init();
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL,'https://sim-roulette.com/navigator/message.html');
echo curl_exec($ch);
curl_close($ch);
sr_footer();
?>