Click to See Complete Forum and Search --> : Opening a method=post in new window`


ga2000gt
01-07-2006, 10:54 AM
I have a game that loads through my site which they have to select a username to play. What I want, is so that when they hit the play button, it will open up the java game in a new window, with the window only the size of the game. I tried adding the target="_blank" code a few places but it just messes things up. Here is what the code looks like:

<form method=post action=acro.php>
Choose a Screen Name:
<input type=text name=name size=15>
<input type=submit value="Play Acrophobia!">
</form>

the acro.php file is the one I want to open in a new window the size of the game. Any help is greatly appreciated.

chazzy
01-07-2006, 11:14 AM
that's a javascript thing typically.

NogDog
01-07-2006, 11:31 AM
Have you tried:

<form method=post action=acro.php target="_blank">