Is it possible to submit a form without reloading the page?
I have more than one form on the same page. The first is a tiny form that displays a drop-down with the client names so the user can select the correct client. This form does not actually load a table but rather just retrieves the client ID from the client table so that the second form can load it with the data into another table.
The problem is that when the user chooses a name from the drop-down, it reloads the entire page, which is rather annoying. I would like it to just display the name and let the user enter the data without changing the page until the user clicks the submit button.
I have tried combining the forms, moving the ID# field from one form to the other, using $_GET variables, changing the $_GET to $_POST, adding fields, removing fields, mucking about until now the nice drop-down that Blue Walrus helped me with doesn't even work anymore. The $_POST values don't seem to pass from one form to the other. I just can't start all over again.
Are there any examples anywhere of this type of form configuration? Tutorials? I don't have another whole day to spend on this. Sorry to be such a dummy. Thanks for any assistance.