I did this in Flash once. What do you mean by local storage? You can let the user do as much as he wants: http://jsfiddle.net/NegYd/14/ using javascript / jquery. Key:
function appendSticky(){ var e= document.getElementById("submittext").value; $("#stickies").append("<li>"+e+"</li>"); $.post("store.php", { text: e} );
and html:
<input id="submittext" type='text'/> <input type='submit' value='add note' onClick="javascript:appendSticky();"/>
Inside store.php you save the sheets in a MySQL database. $sql="INSERT.."
I suggest organizing sheets with float:left; with a random margin-left value, not a list for final perception. Or even better, make it post-drag-and-dropable.
source share