Add the main admin, dosen, mahasiswa, API, and service code needed to run the core legacy application with configurable upload storage.
15 lines
392 B
PHP
15 lines
392 B
PHP
<?php
|
|
$base_url = 'http://203.24.50.140';
|
|
if(empty($_GET['sesi'])){
|
|
echo "<h3>403 Forbidden</h3>";
|
|
exit;
|
|
}
|
|
|
|
$nomor = $_GET['sesi'];
|
|
$hapus = file_get_contents("$base_url:8000/session/delete/$nomor", false, stream_context_create(array( 'http' => array( 'method' => 'DELETE' ) )) );
|
|
//echo $hapus;
|
|
?>
|
|
|
|
<script>
|
|
window.location = "./create-session-wa-gateway.php";
|
|
</script>
|