Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If it's up to URL redirection only then see the following code, I've documented it for you so you can use it easily &amp; directly, you've two main cURL options control URL redirection (CURLOPT_FOLLOWLOCATION/CURLOPT_MAXREDIRS):</p> <pre><code>// create a new cURL resource $ch = curl_init(); // The URL to fetch. This can also be set when initializing a session with curl_init(). curl_setopt($ch, CURLOPT_URL, "http://www.example.com/"); // The contents of the "User-Agent: " header to be used in a HTTP request. curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.9) Gecko/2008052906 Firefox/3.0"); // TRUE to include the header in the output. curl_setopt($ch, CURLOPT_HEADER, false); // TRUE to return the transfer as a string of the return value of curl_exec() instead of outputting it out directly. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // TRUE to follow any "Location: " header that the server sends as part of the HTTP header (note this is recursive, PHP will follow as many "Location: " headers that it is sent, unless CURLOPT_MAXREDIRS is set). curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // The maximum amount of HTTP redirections to follow. Use this option alongside CURLOPT_FOLLOWLOCATION. curl_setopt($ch, CURLOPT_MAXREDIRS, 10); // grab URL and pass it to the output variable $output = curl_exec($ch); // close cURL resource, and free up system resources curl_close($ch); // Print the output from our variable to the browser print_r($output); </code></pre> <p>The above code handles the URL redirection issue, but it doesn't deal with cookies (your localhost URL seems to be dealing with cookies). If you wish to deal with cookies from the cURL resource, then you may have to give the following cURL options a look: CURLOPT_COOKIE CURLOPT_COOKIEFILE CURLOPT_COOKIEJAR</p> <p>For further details please follow the following link: <a href="http://docs.php.net/function.curl-setopt" rel="noreferrer">http://docs.php.net/function.curl-setopt</a></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload