Hi,
I'm a newbie to PHP and as a small project I decided to take on a File Manager of sorts. Basically, I want to write a script which will allow me to edit HTML and PHP files while they reside on my server. I'm able to read the file and display it in a TEXTAREA ok, storing each line of the file into an array and then printing the array. However, when I try and submit the edited file text to be written to a new file I run into a problem. I think the string that is being submitted (the entire file text) is too long, and is getting cut off half way through. I would appreciate any suggestions of how I would take a large amount of TEXTAREA data (1000 characters+) and store it as a variable to be written to a file. Thanx for any help you can offer. :-)
-Jeff