I'm working on an application where users can download a page and are then able to modify that page by dragging things around, resizing them, etc. using jQuery-UI. After the user makes their changes I'd like to let them upload the modified page to the server as a normal html file. Accessing this html file with a browser will bring down the static page with the changes (no jQuery-UI here to make further changes).
The question is, how to get the modified page from the client's browser back to the server as an html file (or maybe as database entries that PHP can build an html file from)? I don't want to reinvent any wheels here if there are already methods developed for doing this sort of thing.
Thanks for any suggestions