I'm working on a site that is used by sales people to register the outcome of telephone calls. "+" and "-" butons next to each outcome (e.x. busy, try again etc.) adds or removes "calls" from the DB.
It works great but I would like to avoid the "reload" of the page each time you add or remove a call. At the same time I want the results to be added to the DB right away so that there's no risk of loosing a days registering if you forget hitting a button that submits the results to the DB.
What I would like is a way to run the PHP script in the background when the user hits "+" or "-". But how? I've been thinking of deviding the page into frames and running the script in another frame... is that the right way to do it?