HEX
Server: Apache/2.4.37 (CentOS Stream) OpenSSL/1.1.1k
System: Linux ysnet.com.tw 4.18.0-553.5.1.el8.x86_64 #1 SMP Tue May 21 05:46:01 UTC 2024 x86_64
User: test (521)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /var/www/net/mikmos/api/load_netwatch_telegram.php
<?php
session_start();
error_reporting(0);
include_once('../inc/lang/id.php');
include_once('../inc/TELEGRAM.php');
$load = $_GET['load'];
if($load == "telegram"){
echo '<table style="width:100%;padding:0!important;">';
if($_STATTELEG==0){echo '<tr>
<td width="30%">Telegram</td><td>Bot Telegram belum diaktfikan<br/> Untuk mengaktifkan Bot Telegram, input Bot telegram <br/>di Menu -> Administrator -> Telegram</td>
</tr>
<tr>';
}else{echo '<tr>
<td width="30%">Nama Device/AP</td><td>
<input class="form-control" type="text" name="device" value="" placeholder="Akses_Point" required >
</td>
</tr>
<tr>';
	
}
echo "</table>";
}
if($load == "script"){
echo '<table style="width:100%;padding:0!important;">';
echo '<tr>
<td width="30%">Up Script</td><td>
<textarea class="form-control" name="upscript"></textarea>
</td>
</tr>
<tr>
<td>Down Script</td><td>
<textarea class="form-control" name="downscript"></textarea>
</td>
</tr>';
echo "</table>";
}
?>