We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

indianocean on 10/15/07


Tagged

php file


Versions (?)


Who likes this?

4 people have marked this snippet as a favorite

vali29
motoroller
skywalker
mikegreen


Simple Logfile


Published in: PHP 


  1. $handle = fopen('./mylog.log', 'a');
  2. fwrite($handle, "test");
  3. fclose($handle);

Report this snippet 

You need to login to post a comment.