|  PHP gevorderde |  | [CTRL]+[a] -> [Delete] -> [CTRL]+[s] -> [ALT]+[F4] 
 
 
    
    
        
            
                <?php
$bestand = './bestand.txt';
$fh = fopen($bestand, 'w');
//$fw = fwrite($fh, ''); <- als je ook nog iets naar je bestand wilt schrijven
fclose($fh);  
?> <?php$bestand = './bestand.txt';$fh = fopen($bestand, 'w');//$fw = fwrite($fh, ''); <- als je ook nog iets naar je bestand wilt schrijven?>
   
 --edit--@fangorN: true!
 |