Re: [PHP-WIN] RE: [PHP] Dynamic file creation in Win NT4.

2002-02-21 Thread Christoph Grottolo
| It's as easy as... :-) | $day = getdate(time()); | $f_name = create table name on time basis; | $fd = fopen($f_name, "a"); // open file | fwrite($fd, "string you want tu put (add) into | file"); // write to file all your data | fclose($fd); // close the file | That's all

Re: [PHP-WIN] RE: [PHP] Dynamic file creation in Win NT4.

2002-02-19 Thread Piotr Pluciennik
It's as easy as... :-) $day = getdate(time()); $f_name = create table name on time basis; $fd = fopen($f_name, "a"); // open file fwrite($fd, "string you want tu put (add) into file"); // write to file all your data fclose($fd); // close the file This will create your fil

[PHP-WIN] RE: [PHP] Dynamic file creation in Win NT4.

2002-02-19 Thread Hunter, Ray
You need to make sure that php has the correct permissions to access the directory and write the file that you want it to write too... Check out the manual for this... Ray Hunter Firmware Engineer ENTERASYS NETWORKS -Original Message- From: Sridhar Moparthy [mailto:[EMAIL PROTECTED]]