fork download
  1. <?php
  2. $url = "https://c...content-available-to-author-only...s.com/embed.js?game=AchillesSolitaire&bgcolor=white";
  3.  
  4. $ch = curl_init();
  5. curl_setopt($ch, CURLOPT_URL, $url);
  6. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  7. $response = curl_exec($ch);
  8.  
  9. header("Content-Type: application/javascript");
  10. echo $response;
  11. ?>
Success #stdin #stdout 0.04s 26428KB
stdin
Standard input is empty
stdout
Standard output is empty