On Sunday 28 October 2001 06:41 pm, you wrote:
> Is it possible to solve this problem or it's a feature in PHP?

If I understand your problem, you are trying to open the same file twice.  
I'm not sure why you would want to do that, but assuming you have a good 
reason, you need to make sure you fclose($filename) before you try to 
fopen($filename) again.  Otherwise, PHP maintains the file open for reading 
(and writing, if that's how you opened it.)

hth

--kurt 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to