Jump to content

Open new window from form.


wwfc_barmy_army

Recommended Posts

Hi,

I've got this code to vote for a site and that loads ratesite.php:

<td colspan="2"><form action="ratesite.php?id=<? print "$qry[id]" ?>" method="post" name="rating" id="rating">
Rate this site:<br>
<select name="rating">
<option value="5" selected>5</option>
<option value="4">4</option>
<option value="3">3</option>
<option value="2">2</option>
<option value="1">1</option>
</select>
<input name="<? echo $_GET[id] ?>" type="hidden" id="<? echo $_GET[id] ?>" value="<? echo $_GET[id] ?>">
<input name="cmd" type="hidden" id="cmd" value="do _rating">
<input type="submit" name="Submit" value="Go!">
</form></td>
Although i am wondering if there is a way that i can make it so it opens a new windows and a windows that is roughly 200px by 200px in size, just so it's a little window. I dunno how to do this with it being submitted as a form. Any ideas/advice?

Thanks.

Peter.
Link to comment
Share on other sites

the form element has a target attribute, just like links:

[code]<form action="ratesite.php?id=<? print "$qry[id]" ?>" method="post" name="rating" id="rating" target="_blank">[/code]

that will open the form in a new window without any window controls.  in order to specify the height/width (and the other params), you may need some javascript fudgery to create the new window, change the target of the form to the new window's name, and then submit the form when the submit button is hit.
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.