I'am a newbe in PHP programming. So this is just a simple question for experts.
Assume I have a form that stores customer data like name, prename, address, and so on. On filed I would like to fill by calling a second php page (in a new browser window) that executes a query to the database, displays the results and lets the user choose on of it. The user presses the a ok button, the second window closes and the choosen result is displayed in the first form.
I already tried to find a solution, but everytime I close the second window after the result selection, the content of the first form is vanished.
How do I need to store the data of the first form?
How can I pass the choice of the second window back to the first form and redisplay the data?
Thx
Tom