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

16 lines
265 B
PHP
Raw Normal View History

2017-04-29 19:23:24 +00:00
2017-04-29 19:30:49 +00:00
<h1>Test!</h1>
2017-04-29 19:23:24 +00:00
2017-04-29 19:30:49 +00:00
<?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);
?>
2017-04-29 19:30:49 +00:00
<?php
echo function_exists('curl_version')?'Yes':'No';
?>