Hello,
let's say you have two PHP program :
- program A display the form
- program B process the data
and send it to the database
1) calling program A display the form
The "ACTION" property is set back
to program A
2) The user click on the submit button,
program A is called again, then from
program A you call program B
(or simply a fonction from program 😎
3) After finishing the execution of
program B you can send whatever
data you need back to the user,
and the only URL appearing in the
browser is the program A URL
Hope this helps you,
Hervé.