Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
2 Posted Topics
Wrong code: $file = "status.txt"; $f = fopen($file,"a+"); // file_put_contents($file,$data); // This is doing ur file blank & then add the data fwrite($fh, $data); // This will append the string to the end of of the file fclose($f); Working code $myFile = "testing.txt"; $fh = fopen($myFile, 'a') or die("can't open …
The End.
msnadz