Dear sir,
I have created new windows using javascript's window.open method. I have given the name for different windows opened. Is there any method with which i can retrieve the name of the window in PHP like the same is there in javascript as window.name;
Please help me.
Mandar😕
if u need it in page load load, setup a Javascript function on window's onload event. Send the window.name to tghe server. In case u need only after the form posting, put a hidden field in the form, fill it with window.name on page load. Thats all..