Page 1 of 1

3b submit problem

Posted: Tue Oct 22, 2013 6:41 pm
by zannza95
http://www.youtube.com/watch?v=d5tlUSl0 ... D8EF52C1D2


<?php
include 'connect.php'

?>

<form method="post" action="reguser.php">
Username here: <input type= "text" name="player" size="21"> <br>
Password Here: <input type'text' name='password' size= '15'> <br>
Password Here: <input type'text' name='password' size= '15'> <br>
Email address here: <input type="text" name="email" size="30" ><br>
</form>
<input type="submit" value="submit">


it wont submit

Re: 3b submit problem

Posted: Tue Oct 22, 2013 7:00 pm
by hallsofvallhalla
your form has to encapsulate the submit button

Code: Select all

<form method="post" action="reguser.php">
Username here: <input type= "text" name="player" size="21"> <br>
Password Here: <input type'text' name='password' size= '15'> <br>
Password Here: <input type'text' name='password' size= '15'> <br>
Email address here: <input type="text" name="email" size="30" ><br>

<input type="submit" value="submit">
</form>