Hi.. im trying to understand how to write to php file, so if anyone would mail me some php files which can wirte to each other, i would really apprechiate it.. Frank-And@ofir.dk
$file_pointer = fopen("filename.txt","w"); fwrite ($file_pointer, "text to put in the file"); fclose ($file_pointer);
-- http://www.scriptsharks.com/
hmz, you might want to try: fopen("filename.txt","a+"); for appending to the file instead of overwriting it.. just look in the php online manual for fopen..
Jordy Querner www.querner.com