Annotation of embedaddon/php/ext/standard/tests/streams/bug64433_srv.inc, revision 1.1.1.1

1.1       misho       1: if(!empty($_REQUEST["redir"])) {
                      2:        echo "REDIRECTED\n";
                      3:        return;
                      4: }
                      5: 
                      6: if(!empty($_REQUEST["loc"])) {
                      7:        header("Location: index.php?redir=1");
                      8: }
                      9: 
                     10: if(!empty($_REQUEST["status"])) {
                     11:        http_response_code($_REQUEST["status"]);
                     12: }
                     13: 
                     14: echo "HELLO!\n";

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>