4
1
Fork 0
This repository has been archived on 2019-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
Cheaterliste/curl_testfile.php
2017-04-29 21:30:49 +02:00

16 lines
No EOL
265 B
PHP

<h1>Test!</h1>
<?php
$url=$_POST['txturl'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$output = curl_exec($ch);
echo $output;
curl_close($ch);
?>
<?php
echo function_exists('curl_version')?'Yes':'No';
?>