fork download
  1. <?php
  2. $url = "https://w...content-available-to-author-only...s.org/";
  3.  
  4. // Initialize a CURL session.
  5. $ch = curl_init();
  6.  
  7. // Return Page contents.
  8. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  9.  
  10. //grab URL and pass it to the variable.
  11. curl_setopt($ch, CURLOPT_URL, $url);
  12.  
  13. $result = curl_exec($ch);
  14.  
  15. echo $result;
  16. ?>
  17.  
Success #stdin #stdout 0.03s 25944KB
stdin
Standard input is empty
stdout
Standard output is empty