Quellcode anzeigen

<?php
    
    
include('fontsize.inc.php');

    if (!empty(
$_GET['uri'])) {
        
Header('Location: http://'.$_SERVER['HTTP_HOST'].$_GET['uri']);
    } elseif (!empty(
$_SERVER['HTTP_REFERER'])) {
        
Header('Location: '.$_SERVER['HTTP_REFERER']);
    } else {
        print(
'Fehler');
    }

?>