5 lines
124 B
PHP
5 lines
124 B
PHP
<?php
|
|
header("Access-Control-Allow-Origin: *");
|
|
$content = file_get_contents("http://127.0.0.1/user.php");
|
|
echo $content;
|
|
?>
|