mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 08:34:29 +00:00
9 lines
197 B
PHP
Executable File
9 lines
197 B
PHP
Executable File
<?php
|
|
$url = "http://xgnd.bsz-bw.de/";
|
|
$zielfeld = "kontrollschlagwoerter";
|
|
$url = $url."?zielfeld=".$zielfeld;
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
print file_get_contents($url);
|
|
?>
|
|
|