i am a newbie to php and am working on a project.
I have a button on one page which opens up a pop out page for some user input.
how do i pass the data on the popout page to the parent page once the user clicks the submit button on the popout page?
Is there any javascript that i will have to use or this could be done with the help of a php code.
If you mean a new window when you say popup, you can get/setthe opener’s elements from your popup like this:
window.opener.document.getElementById(“your element”).value = “new value”;