Senin, 19 Agustus 2013

Latihan 3

3. Proses input data dengan password menggunakan metode : POST

a. Untuk membuat inputan, dan beri nama file : c.php
<html>
<head>
     <title>Contoh Form dengan POST</title>
</head>
<body>
<form action="c1.php" method="post">
<h1>Only for authorized user</h1>
<hr>
Username : <input type="text" name="username">
<br>
Password : <input type="password" name="password">
<br>
<input type="submit" value="login">
</form>
</body>
</html>
b. Buat file untuk memproses variabel, beri nama filenya : c1.php
<html>
<head>
     <title>Proses Input</title>
</head>
<body>
<?
$username=$_POST["username"];
$password=$_POST["password"];
?>
Username : <?echo $username?>
<br>
Password : <?echo $password?>
<br>
</body>
</html>

Tidak ada komentar :

Posting Komentar