Posts
 
Reputation
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
~5K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for <M/>
Member Avatar for Member #710047

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 …

Member Avatar for msnadz
0
3K

The End.