|  PHP beginner |  | :) toevoegen.php dan denk ik :S ben n00b dus... wie kan me helpen: 
 index.php:
 
 
 
    
    
        
            
                <form method="GET" action="berichtenbalk/toevoegen.php"> 
<font face="Times New Roman" color="white"> 
N<font color="#000000">a</font>am:<br><input type="text" size="15" name="naam"><br> 
Ber<font color="#000000">ic</font>ht:<br><input type="text" size="15" name="bericht"><br> 
<input type="submit" name="toevoegen" value="Toevoegen"> 
</form>  <form method="GET" action="berichtenbalk/toevoegen.php"> <font face="Times New Roman" color="white"> N<font color="#000000">a</font>am:<br><input type="text" size="15" name="naam"><br> Ber<font color="#000000">ic</font>ht:<br><input type="text" size="15" name="bericht"><br> <input type="submit" name="toevoegen" value="Toevoegen"> </form>
   
 Toevoegen.php:
 
 
 
    
    
        
            
                <?php 
include ("berichttoevoegen.php"); 
?> 
<? 
$naam = $_GET['naam']; 
$bericht = $_GET['bericht']; 
$bestand = fopen ("berichten.txt","a"); 
fputs ($bestand, "<font face=Times New Roman=white size=2> <b> ".$naam.": </b>[ ".$bericht." ]"); 
?>  <?php include ("berichttoevoegen.php"); ?> <? $naam = $_GET['naam']; $bericht = $_GET['bericht']; $bestand = fopen ("berichten.txt","a"); fputs ($bestand, "<font face=Times New Roman=white size=2> <b> ".$naam.": </b>[ ".$bericht." ]"); ?>
   
 Berichttoevoegen:
 
 
 
    
    
        
            
                <form method="GET" action="toevoegen.php"> 
<table border="0"> 
<tr> 
<td> 
<font face="Times New Roman" color="white"> 
Naam:<br>Bericht:<br><br> 
</td> 
<td> 
<input type="text" size="15" name="naam"><br> 
<input type="text" size="15" name="bericht"><br> 
<input type="submit" name="toevoegen" value="Toevoegen"> 
</td> 
</tr> 
</table> 
</form>  <form method="GET" action="toevoegen.php"> <table border="0"> <tr> <td> <font face="Times New Roman" color="white"> Naam:<br>Bericht:<br><br> </td> <td> <input type="text" size="15" name="naam"><br> <input type="text" size="15" name="bericht"><br> <input type="submit" name="toevoegen" value="Toevoegen"> </td> </tr> </table> </form>
   |