Vereinfache mal den Test ob der Header sendet..
Zitat von
General2003:
Hab ich alles schon gemacht....
Hab das ganze mal auf ein Feld minimiert:
index.htm
Code:
<
html>
<head>
<title>Test</title>
</head>
<body>
<form name="testform" action="test.php" method="post" enctype="text/plain">
Was reinschreiben: <input type="text" name="eintest" value="eintest">
<input type="submit" value="ok"></input>
</form>
</body>
</
html>
test.php
Code:
<
html>
<body>
Hier sollte was stehen: <?php echo $eintest; ?>
</body>
</
html>