9 lines
125 B
PHP
Executable File
9 lines
125 B
PHP
Executable File
<?php
|
|
header('Content-Type: text/xml; charset=utf-8');
|
|
$url = $_POST['url'];
|
|
if($url)
|
|
{
|
|
echo @file_get_contents($url);
|
|
}
|
|
?>
|