1.

Solve : HTML codes?

Answer»

Is there a HTML CODE for a log in page that has a USERNAME or passwordNot with any MEANINGFUL kind of security.  Securely logging in requires some server-side coding (e.g. PHP or RUBY), not just HTML/javascript on the client side.hi william...

i write something for you....it works....take your username and password entered...now you need to validate the value obtained from your textbox in a database....

if (isset($_POST['but_ok'])) {
$U=$_POST['username'];
$pass=$_POST['password'];
echo 'username is ='.$u.' and password is '.$pass;
}
?>





   

Username :
Password   :



   

hope it helps...


Discussion

No Comment Found