Subscribe

PHP & CURL Forum

Just a quick post about a forum I found today. If you’re looking for other people to talk about CURL and PHP with I came across this forum the other yesterday. Doesn’t seem super active however there might be some answers to your questions in the history.

http://curl.phptrack.com/forum/viewforum.php?f=1

Share and Enjoy:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Blogplay

5 Responses to “PHP & CURL Forum”

  1. Eric says:

    I opened the browser with this url, http://77.666.555.44:8080/file/test.jsp
    That is a sample server address
    It works fine in the browser, I see the page.

    But when I run it through cUrl it stalls and returns a blank page.
    The error message I get from cUrl is “couldn’t connect to host”

    Any reason why?
    I am new to PHP
    If anyone knows the answer please help
    I have been stuck on this for weeks.
    Any advice will be appreciated.

  2. Eric says:

    the PHP code:

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, “http://77.666.555.44:8080/file/test.jsp”);
    curl_setopt($ch, CURLOPT_TIMEOUT, 20);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    $response = curl_exec($ch);

    if (curl_errno($ch)) {
    echo curl_error($ch);
    } else {
    echo $response;
    curl_close($ch);
    }

  3. darvenginzks says:

    I’ve recently joined and wanted to introduce myself :)

  4. dschibut says:

    I started this thread to evaluate public available web proxies:

    Which are really anonymous?

    Which can be used with facebook, myspace etc, in other words: are fresh ?

    Which would you recommend?

    Thanks for your help,
    Dschibut

    P.S.: In my country, the freedom of speech is somehow limited, please give me a hint, if you are not sure about your recommendation.

  5. bes says:

    Hi,
    i new here and have one question
    how can i print some var type in curl

    how can i print the value of var name in curl ?
    (get the value from Arthur website)

    thanks

Leave a Reply