| Server IP : 74.208.236.18 / Your IP : 216.73.217.46 Web Server : Apache System : Linux infong654 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u39365822 ( 135825) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/7/d147067425/htdocs/ |
Upload File : |
<?php $url = "http://apis.revealmyway.com:4000/therapist_api/public/api/update"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $headers = array( "X-Custom-Header: value", "Content-Type: application/json", "API-TOKEN:t68VRoQGFSxHVR3dskZvRKpe8Pb1rQrm", ); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); $fields = array( "email" => "falconhawk.nav@gmail.com", "Profiler" => "-1", "Pmg" => '-1', "periodicProfiler" => '-1' ); curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($fields)); //for debug only! curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); $resp = curl_exec($curl); curl_close($curl); var_dump($resp);