Hello All,
I have a form with some check boxes & drop downs on it. When they are checked or changed I use a JavaScript routine to resubmit the page & pass the correct variables. This fires a PHP routine which saves the information to the MySQL database using an update query. Then the page is reloaded & displayed.
Nothing wrong with this over the 100Base LAN... however I need to do this over a modem linkup. Again this is no problem, but I am trying to cut down on page refreshes & therefore traffic on the modem link.
Is there any way I can get the PHP query to run without having to re-display the page? Use JavaScript for the event handling & PHP to do the DB call.... But do this without resubmiting the page??