advanced code snippet search
G470 on 11/02/10
php text
11/02/10 06:39pm
2 people have marked this snippet as a favorite
userpivDesoxena
$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.