Re: [PHP] Creating a new file & saving it with date & time name

2001-11-26 Thread Michael Hall
Something like this ...? $time = time(); // UNIX timestamp $filename = $time . ".txt"; $string = "your content here"; $file = fopen("$filename","w"); fputs($file,$string); fclose($file); Michael On Mon, 26 Nov 2001, Kevin Garrett wrote: > Hi all, > > I'm looking to find out how

[PHP] Creating a new file & saving it with date & time name

2001-11-26 Thread Kevin Garrett
Hi all, I'm looking to find out how to create a file using php & using the date & time as it's filename. Can somebody please help me? Kevin _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- PHP Ge