Forum Moderators: coopster
curl_setopt($ch, CURLOPT_POSTFIELDS,$post);
I'm given a response (usually en entire HTML page of whatever form I just submitted)
I know that if the string is posted - it will be accepted by the end server - so I do not need/want to see a response.
I've tried playing around with:
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
AND
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 1);
changing the values from 0 to 0.01 to 0.1 to 1 etc... with no luck - I'm still seeing a response.
How do I post variables without waiting/seeing the response?