Thread: fopen
View Single Post
Old 07-22-2008, 01:00 AM   #4 (permalink)
delayedinsanity
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

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+');

delayedinsanity is offline  
Reply With Quote
The Following User Says Thank You to delayedinsanity For This Useful Post:
Tanax (07-22-2008)