jspicher on 10/09/09
Last Edited at 10/09/09 04:51pm
function file_put($file, $source){ $fp = fopen($file, 'w'); fwrite($fp, $source); fclose($fp); @chmod($file, 0777);}
Report this snippet Tweet
Comment:
You need to login to post a comment.