Hi
I hope I ask the right question, and in the right place
I have a form, which is used to get add info to a MySQL, written in PHP. I need to be able to update three fields, which i want to pass from a popup window.
I can crate the popup windows from a button on the main page, and the popu p window then queries the DB, pulling up all the records I need.
What I'm not sure of accomplishing, is this:
The main page has on text field, which needs to be updated with a value from the popup, and two hidden fields, which will basically hold the table row id, and another table's row id, thus two hidden fields.
How would I do this? In the popup window, I want the info to be displayed as links, which when clicked on, it will close the window automatically.
Something like this: <a href="# onclick(--what do I put here--); self.close();>John Doe</a>
Does this make sense?