07-22-2008, 01:00 AM
|
#4 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
Right, I forgot that part.
You could always check file_exists first,
PHP Code:
if (file_exists($szFilename)) { fopen($szFilename, 'r+'); } else { fopen($szFilename, 'w+'); }
|
|
|
|