Posted By:
Nitesh_Naveen
Posted On:
Thursday, September 4, 2003 01:30 AM
you have to basically open a blank window and submit to the resultant php with that window as the target of the form. In the new php you will have to read the data from the request and populate them as required. Here is an eg.to submiting to new window...
var myWin = window.open("about:blank","myWin","width=300,height=500");
document.formName.target="myWin";
document.formName.action="c2.php";
document.formName.submit();