ist ja länger her aber wollte das thema nochmal aufgreifen
hab jetzt alles in
html reingeschriebn
dann müsste das doch gehen zumindestens wenn ich das auf apache ausführe.
Code:
<
html>
<head>
<meta http-equiv="cache-control" content="no-cache">
<title>
hallo
</title>
</head>
<body>
<form action='#' method='POST'>
<input type='submit' value='test' name='test'>
</form>
<?php
if (isset($_POST['test']))
{
header('location: [
url]http://www.google.de');[/
url]
echo "<script>alert('hallo - einloggen nicht fehlgeschlagen!')</script>";
echo "hallo!";
// das erste echo müsste ja dann mindestens mal gehen
exit();
}
?>
</body>
</
html>