PDA

View Full Version : Cron Reading of a File


TheInsaneManiac
02-02-2011, 03:04 AM
How can I use VBulletins cron system to read and write to a text file? I have a file that saves data to a text file that I would like it to do everyday, ideas?
$fp = fopen('../../data/result.txt', 'w');
fwrite($fp, $data1);
fwrite($fp, '.');
fwrite($fp, $data2);
fwrite($fp, '.');
fwrite($fp, $data3);
fwrite($fp, '.');
fwrite($fp, $cata4);
fclose($fp);

TheInsaneManiac
02-03-2011, 08:15 PM
Anyone?