> $file = fopen("Counter.txt", "r+");
You need to open the file with write access and PHP must have write
permission....
e.g. $file = fopen("Counter.txt", "w+");
Mike D...
--
Mike Dunlop
Webmaster
Animation World Network
[EMAIL PROTECTED]
http://www.awn.com
(323) 606-4238 office
(323) 466-6619 fax
6525 Sunset Blvd. GS10 Los Angeles, CA 90028
USA

