Jump to content

How to send post data to a pop up


asmitaisit

Recommended Posts

I have a huge form. I have to press a button for preview before submitting data to DB.

 

i have set condition after post as

if($_POST['preview']){

$prev = array(

"owner" => $_POST['owner'],

"refid" => $_POST['refid'].................and many other fields);

 

$prev1=serialize($prev);

echo "<script type='text/javascript'>window.open('preview.php?arr=$prev1', 'window_name');</script>";

}

the form has many text areas as well.

its not opening the preview page and says INVALID URL.

How to pass the data to preview page now?

 

 

Link to comment
https://forums.phpfreaks.com/topic/89040-how-to-send-post-data-to-a-pop-up/
Share on other sites

You shouldn't do that. If a person has javascript turned off, your site wont work. You should follow the advice of shocker-z and set it up to work in php. Then, if you want to add the javascript overtop for some reason, you can do that. But you should never depend on javascript.

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.