tomhilton
11-16-2003, 12:08 PM
Hi, I am trying to pass form variables <form method='post' action=' ' onsubmit='openme()'> to a popup window defined in the head as such:
<script language="Javascript">
<!-- Hide script from old browers
function openme()
{
var openup
openup=window.open('general_1.php','Sheet','width=300,height=400,directories=no,location=no,menubar= no,scrollbars=yes,status=no,toolbar=no,resizable=no,screenX=25,screenY=100,top=25,left=100')
}
// End hiding
</script>
None of the variables created in my form are being passed to the receiving popup window, general_1.php. It is a simple page, with only phpinfo() function right now, and it is showing no variables being passed. Any help would be appreciated.
<script language="Javascript">
<!-- Hide script from old browers
function openme()
{
var openup
openup=window.open('general_1.php','Sheet','width=300,height=400,directories=no,location=no,menubar= no,scrollbars=yes,status=no,toolbar=no,resizable=no,screenX=25,screenY=100,top=25,left=100')
}
// End hiding
</script>
None of the variables created in my form are being passed to the receiving popup window, general_1.php. It is a simple page, with only phpinfo() function right now, and it is showing no variables being passed. Any help would be appreciated.