Return to bug64433_srv.inc CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / streams |
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";