I have a page which, when a user visits it, makes a MySQL call to a DB, and then puts that information into an html table presented to the viewer by the time the page initially loads.
I want to allow more advanced refinement options, like filtering by name, age, etc.
when the user submits their refinement options, how would I clear out the "old" data in the HTML table that is displayed on page load, and then re-populate it with the "new" data PHP returns?
Will this require DOM manipulation via JS? How can I specify the target node to echo out my PHP into?
Thanks :)