I've made a fun little Tape database for our Multimedia Department. After only a few weeks of playing with PHP I was surprised at what I could do in such a short time.
But here's my problem.
Step 1) a user searches for some records.
Step 2) the list is returned and the user clicks an Edit button.
Step 3) the record to be modified is loaded into a seperate HTML document.
Step 4) after modifying the entry a submit button UPDATES the record.
When the UPDATE (or INSERT) statement is executed the Edit (or New) page updates to an empty form. Instead, I would like the previous search results page to load with the altered data. I've seen this done on other pages, but can't figure it out myself.
Any help would be appreciated.
PS I tried using javascript's History.back(-2) but that didn't work.