fork download
  1. <?php
  2.  
  3. $C_FNAME = 'bittu';
  4. $new_username = 'HRS0215';
  5. $C_PASSWORD = '2232232';
  6. $site_addr = 'highrich.net';
  7.  
  8. $site_addr = 'https://h...content-available-to-author-only...h.net';
  9. $message = "Hi {$C_FNAME}, Please find the new credentials, User Id: {$new_username} Password: {$C_PASSWORD} visit {$site_addr} HIGHRICH ONLINE";
  10.  
  11. $sms = urlencode($message);
  12.  
  13. $C_MOBILE = '9207877534';
  14.  
  15. $url = "http://s...content-available-to-author-only...s.com/httpapi/httpapi?token=a1caabce768192c9ff6a2f5731126c4e&sender=HROSIN&number=".$C_MOBILE."&route=2&type=1&sms=".$sms."&templateid=1107165908589597579";
  16.  
  17. $url = str_replace(" ", "%20", $url);
  18.  
  19. $curl_handle = curl_init();
  20. curl_setopt($curl_handle, CURLOPT_URL, $url);
  21. curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
  22. curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
  23. curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Highrich');
  24. $query = curl_exec($curl_handle);
  25. curl_close($curl_handle);
  26.  
Success #stdin #stdout 0.03s 26364KB
stdin
Standard input is empty
stdout
Standard output is empty