[php] I just spent four hours working on a code that I earlier made to store data inside of comment tags within the php itself file by accessing data and/or writing data with fopen. The comment was in the middle of the page so my strategy was fread the whole page, replace the current data inside the comments and update it by overwriting the whole page with new data fwriting. It was working, so I wrote about 40 more lines of code thinking it was all ok, till fwrite all of a sudden erased the whole page. I reloaded the file in the editor so it was all lost. Lesson learned: use a separate file and append, not rewrite. I'm too depressed to make it all again right now.
$my_heart = "broken";
