On Thu, Jan 12, 2012 at 12:20 AM, Rick Dwyer <rpdw...@earthlink.net> wrote:
> Hello all.
>
> I use curl to make a call to another page on my site... but it operates
> erroneously.... sometimes working... sometimes not.  The page it calls
> creates an email and I can see on the server the email in the queue when
> it's working.  If I echo out the URL the curl command is supposed to load
> and load it manually, it works without fail.
>
> Any help on what I am doing wrong below is greatly appreciated.
>
> Thanks.
>
>
> $curl_handle=curl_init();
> curl_setopt($curl_handle,CURLOPT_URL,'https://mydomain.com/email_confirmation.htm?id_order='.$id_order.'&sess_id='.$sess_id);
> curl_exec($curl_handle);
> curl_close($curl_handle);
>
>  --Rick

It's maybe not a real answer to your question, but if all you want to
do is call that page, why don't you just use
file_get_contents(https://mydomain.com/email_confirmation.htm?id_order='.$id_order.'&sess_id='.$sess_id);
(See [1])
It works out of the box, and I have found curl unstable too sometimes.

Matijn

[1] www.php.net/file_get_contents

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to