If I am opening a new window from a page and after submiting that window is it possiable to bring the values back to the original window??
If so, Please let me know how it can be acheived.. Thanks
With javascript - yes. PHP - not without reloading the page.
Use a hidden form field on the widow thats opens the other and from the popup window use:
window.opener.form_name.form_field.value = 'val';
Nope, I cannot able to do that.. I would appreciate a help with a simple example..
Thanks
php you can as well, i don't see why not
after submiting that window
What does submitting that window mean? Where do these variables originate? Can you explain what it is you're trying to do?
Cgraz
just put in hidden textboxes in the new window form, and give them the variable names $textbox1, $text2, etc
can you give details on exactly what you are doing?