web learning

HTML

CSS

PHP

JAVA SCRIPT

AJAX

EBOOKS

PROJECT

FORUM

<?php
// If the name field is filled in
if (isset($_GET['name']))
{
$name = $_GET['name'];
$email = $_GET['password'];
printf("Hi %s! <br />", $name);
echo "You are logged in!!!";
}
?>
<form action="loginformget.php" method="get">
<p>
Name:<br />
<input type="text" id="name" name="name" size="20" maxlength="40" />
</p>
<p>
Password Field:<br />
<input type="password" id="password" name="password" size="20" maxlength="40" />
</p>
<input type="submit" id="submit" name = "submit" value="Go!" />
</form>

Categories:

Leave a Reply