Hi ich habe folgende Probleme mit meinem PHP-Script. 
[COLOR=#000000] [COLOR=#006600]
	
[/COLOR] [/COLOR]Ich möchte dem Inhalt vom Textarea auf eine neue Seite herausgeben.
Leider weiß ich nicht was ich falsch gemacht habe. Kann mir einer helfen?
					[COLOR=#000000] [COLOR=#006600]
PHP-Code:
	
	
<?php
    $nachricht = $_POST['nachricht'];
?>
 <table width="200" border="0">
  <tr>
      <td>Textfeld:</td>
    <td><form method="post"><textarea name="nachricht"></textarea></form></td>
    </tr>
   
   </table>
<?php
$text = fopen("hier_schreiben.php", "w+");
fwrite($text, $nachricht);
fclose($text);
?>
<form><input type="submit"></form>
Leider weiß ich nicht was ich falsch gemacht habe. Kann mir einer helfen?
          
 Moderator
Kommentar