Hi 🙂
like nearly everyone else - I am trying a login script - but I think the problem lies with the config of my php (or whatever)
I have a login.html
<form name="form-1" id="form-1" method="post" action="login.php">
<input name="username" type="text" size="20" />
<br>
<input name="password" type="password" size="20" />
<br>
<input name="login" type="submit" value="Submit" />
</form>
when the submit is pressed, it takes me to login.php
if(isset($username) || isset($password)) {
echo("DEBUG - isset - failed username/password");
}
for some reason the Variables $username and $password are not being passed through to login.php
is there some php setting that I need to change from default?
system Win2KPro
php 4.2.1
many thanks