Web-based collaborative editor
I have a php and jquery web-based file editor, that constantly updates the file you are working on (everytime you press a button).
The whole point is to allow multiple people to work on the same file at once, without overriding each others changes...
However, everytime you type, it updates the file, but if you both type at the same time, it wouldn't save one of the key changes...
So, I need to be able to add the text into the file, without re-writing the entire file...
Any thoughts?