advanced code snippet search
qrist0ph on 05/13/08
io
05/13/08 09:12am
3 people have marked this snippet as a favorite
romanosmrjthethirdvali29
$myFile = "testFile.txt";$fh = fopen($myFile, 'w') or die("can't open file");$stringData = "Bobby Boppern";fwrite($fh, $stringData);$stringData = "Tracy Tannern";fwrite($fh, $stringData);fclose($fh);
Report this snippet Tweet
Comment:
You need to login to post a comment.