hello all
i have the following login.html page.
<form name="form1" method="post" action="create.php">
<p>
<input type="text" name="$username" size="20" value="username">
<br>
<input type="text" name="$password" size="20" value="password">
<br>
<input type="submit" name="Go" value="login">
</p>
</form>
and then a php page, called 'create.php' that takes these parameters and uses them in a function.
create.php
function newuser($username,$password)
{
...
}
Ive been trying for ages to get the parameters to be passed, can anyone spot where i'm going wrong?
Thanks in advance, all help is much appreciated.
- Pete