index.html kısmı:
<form action ="ayar.php">
Kullanıcı adı:<br>
<input type="text" name="Kullanici"><br>
sifre:<br>
<input type="text" name="sifre"><br>
<input type="submit" value="Giriş">
ayar.php kısmı :
<?php
$uye = $_POST['Kullanici'];
$sifre = $_POST['sifre'];
if($uye=="BATU" and $sifre=="1234")
echo "Hoşgeldin ".$uye
else
echo "Yanlış kullanıcı adı veya şifre girdiniz!"
?>