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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.