Hi there ,
I have 2 pages with following code :
Page 1:
<FORM NAME="FORM1" action='test21.php' Method='Post'>
<INPUT TYPE="Hidden" Name="Continue" VALUE="Continue">
<INPUT TYPE="Submit" Name="Submit" VALUE="Continu">
</FORM>
Page 2:
<?php echo $Continue; ?>
And this is working fine BUT suppose I wanted to parse a hidden value to
a pop-up than it is not working.
Page 1 :
<head>
<script language="javascript">
function openIT() {
winpopup = window.open( 'test11.php', 'Chromeless' , 'fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
winpopup.document.close();
}
</script></head>
<body>
<FORM NAME="FORM1" action='test11.php' Method='Post'>
<INPUT TYPE="Hidden" Name="Continue" VALUE="Continue">
<INPUT TYPE="Submit" Name="Submit" VALUE="Continu" ONCLICK='self.close();openIT();'>
</FORM>
Page 2 :
<?php echo $Continue; ?>
Is it possible to parse a hidden value to a popup ? How do I do that ?
THX
--Gerry