$username, "password" => "medtransgoBAD", "sessionid" => "DUMMYSESSION" ); $content = json_encode($data); $curl = curl_init($url); curl_setopt($curl, CURLOPT_HEADER, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-type" => "application/json")); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $content); $json_response = curl_exec($curl); $status = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ( $status != 200 ) { echo ("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl)); } curl_close($curl); $response = json_decode($json_response, true); echo "RESPONSE
"; var_dump($response); echo "
INPUT
"; var_dump($data); echo "
"; echo "
"; // saving the session in a file for other call use $myfile = fopen("fl/sample_session.txt", "w") ; $txt = $response['sessionid']."\n"; fwrite($myfile, $txt); $txt = $response['member_id']."\n"; fwrite($myfile, $txt); fclose($myfile); echo highlight_string(file_get_contents(__FILE__)); ?>