-
html form help
Below is my html code
Code:
<FORM action="process_login.php" method="post" enctype="multipart/form-data">
<table width='300'>
<tr>
<td align='right'>Username:</td>
<td align='left'><input type='text' name='username'></td>
</tr>
<tr>
<td align='right'>Password:</td>
<td align='left'><input type='password' name='password'></td>
</tr>
<tr>
<td align='right'>Retype Password:</td>
<td align='left'><input type='password' name='retypepassword'></td>
</tr>
<tr>
<td align='right'>Email</td>
<td align='left'><input type='text' name='email'></td>
</tr>
<tr>
<td align='right'></td>
<td align='left'><input type='submit' name='button' value='Register'></td>
</tr>
</table>
</form>
How do i get the process.php file in a dirrent window size please can anyone help.?
-
Re: html form help
i don't get your question, could you be a bit more specific?
if i'm correct then thats the code of form.php?
what do you mean by "different window size"?
-
Re: html form help
When i mean is when the submit button has been clicked the process_login.php file then opens in a smaller windows say 800 x 600 for example?
-
Re: html form help
you have to use JavaScript.
PHP is a server-side scripting language and never deals with the client side of things.