G470 on 11/02/10
Last Edited at 11/02/10 06:39pm
$mycontent = "My sample text";$myFile = "inhalt.txt";$fh = fopen($myFile, 'w') or die("can't open file");$stringData = $mycontent;fwrite($fh, $stringData);fclose($fh);
Report this snippet Tweet
Comment:
You need to login to post a comment.