i was wondering if you can use php to create/alter text files on a server. please do tell if its possible. thank ya.
Yes it is possible.
Read about
fopen() fread() and fclose()
in the manual.
J.
Also, fwrite() if you are going to write to a file.
You can use fsockopen() in place of fopen() if you wish to open a connection to a server (local or not), and treat this connection just as you would a file (read/write to it).
alrighty, thanks a lot for both responses.
arg
i keep getting this error when i try to create a file:
HTTP wrapper does not support writeable connections.
how do i fix this?