as the subject states I'd like to use a little bit of OOP and be able to drag-and-drop things on a web page to initiate SQL queries.
I've got mySQL and PHP 4 running on a windows box, and I have a database with a list of about 50 items.
I want to be able to have a master list of all the items in the table (just one field printed out, probably the first 20 characters) then be able to drag the title and drop it into one of 5 boxes. If it is dropped into box 1, then it would update the "box1" field to have a 1 instead of a zero. If it were dropped into box 2, then it would update the "box2" field to have a 1 instead of a zero, and so on. If I drug something from box 3 to the trash can (probably a big box, or maybe just if I drug it to white space?) then it would update the "box3" field to have a zero instead of a 1.
how hard would this be? I've done a bit of work similar in visual basic, but that was about 5 years ago.