Cik.php
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<?php
@session_start();
session_destroy();
echo "Anasayfaya Gitmek İçin <a href='index.php'>Tıklayınız</a>;"
?>
Giris.php
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<?php
@session_start();
$kullaniciAdi=$_POST['kullaniciAdi'];
$sifre=$_POST['sifre'];
if ($kullaniciAdi&&$sifre)
{
$baglanti=mysql_connect("localhost", "root", "") or die ("Bağlantı Kurulamıyor!");
mysql_select_db("kullanicibilgileri") or die ("Veritabanı Seçilemiyor");
$sorgu=mysql_query("SELECT * FROM kullanici WHERE kullaniciAdi='$kullaniciAdi'");
$satir=mysql_num_rows($sorgu);
//echo $satir;
if($satir!=0)
{
while($hucre=mysql_fetch_array($sorgu))
{
$dbkullaniciAdi=$hucre['kullaniciAdi'];
$dbsifre=$hucre['sifre'];
}
if($kullaniciAdi==$dbkullaniciAdi && $sifre==$dbsifre)
{
Echo "Başarıyla Giriş Yaptınız. Devam Etmek İçin <a href='ozel.php'>Tıklayınız!</a>";
$_SESSION['kullanici']=$kullaniciAdi;
}else
echo "Lütfen Bilgilerinizi Kontrol Ediniz!";
}else
echo "Böyle Bir Kullanıcı Bulunmamaktadır!";
}else
die ("Lütfen Kullanıcı Adınızı Veya Şifrenizi Giriniz!");
?>
İndex.php
<html>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<form action="giris.php" method="post">
Kullanıcı Adı <input type="text" name="kullaniciAdi"><br>
Şifre <input type="password" name="sifre"><br>
<input type="submit" value="Giriş">
</form>
</html>
ozel.php
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<?php
@session_start();
if ($_SESSION['kullanici'])
{
echo " Hoşgeldiniz " .$_SESSION['kullanici']. "";
echo "<a href='cik.php'>Çıkış Yap</a>";
}else
echo "Bu Sayfaya Giriş İzniniz Bulunmamaktadır! Anasayfaya Gitmek İçin <a href='index.php'>Tıklayınız</a>";
?>
Veritabanınızda kullanicibilgileri adında bir database açın ve kullanici diye bir tablo olusturun tabloda id kullaniciAdi sifre sütunları olsun
mustafa bozdemir
dj_musti_bozdemir@hotmail.com