Jump to content

Window.open With Form


sungpeng

Recommended Posts


<script>
function open_win() 
{
window.open ("chats.php","mywindow","menubar=1,resizable=1,width=350,height=500");
}
</script>
<form name="form" method="post" onsubmit="return open_win();">
<select name="cpid">
<option value="2">2</option>
</select>
<input type="submit" name="talk" value="Chat">
</form>

 

Please help. I can't get the value $_POST[cpid] from chats.php.

Link to comment
https://forums.phpfreaks.com/topic/271249-windowopen-with-form/
Share on other sites

var val = "<?php Print $_REQUEST[cpid]; ?>";

The first attempt I clicked submit button the value passed to the function open_win.

To my surprise the first time "val" return as 0 in value.

The second attempt I clicked submit button the value of the first attempt is reflected out from "val"

Please help..

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.