-
HTML Form Question...
Does anyone know how i make this form open in a new window when the submit button is clicked?
PHP Code:
<form method="post" action="http://www.gaybymail.com/subscriptions.html">
<input type="text" name="email" size="30" maxlength="49" onfocus="this.value = ''" value="Enter your email address!"></td>
<td valign="middle" align="center" width="91"><input type="submit" value="Subscribe" name="submit"></td>
</form>
Any help would be appreciated :)
Regards,
Lee
-
PHP Code:
<form method="post" action="http://www.gaybymail.com/subscriptions.html" target="_blank">
<input type="text" name="email" size="30" maxlength="49" onfocus="this.value = ''" value="Enter your email address!"></td>
<td valign="middle" align="center" width="91"><input type="submit" value="Subscribe" name="submit"></td>
</form>
-
Well shit...
I didnt even think of putting it there LOL
Thanks for the help babe :)
Regards,
Lee