-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdenetim.php
35 lines (26 loc) · 1.01 KB
/
denetim.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
session_start();
ob_start();
include("baglanti.php");
$kullanici_adi = htmlentities(mysql_real_escape_string($_POST["kullanici_adi"]));
$parola = md5(md5(htmlentities(mysql_real_escape_string($_POST["parola"]))));
$sorgula = mysql_query("SELECT * FROM uyeler WHERE kullanici_adi='{$kullanici_adi}' and parola='{$parola}'") or die (mysql_error());
$uye_varmi = mysql_num_rows($sorgula);
if($uye_varmi > 0)
{
$_SESSION["giris"] = "true";
$_SESSION["kullanici_adi"] = $kullanici_adi;
$_SESSION["parola"] = $parola;
setcookie("kullanici_adi",$kullanici_adi,time()+60*60*24);
setcookie("parola",$parola,time()+60*60*24);
echo str_repeat("<br>", 8)."<center><img src=images/yukleniyor.gif border=0 /> Giriş başarıyla tamamlandı.</center>";
header("Refresh: 2; url=anasayfa.php");
}
else
{
echo str_repeat("<br>", 8)."<center><img src=images/hata.gif border=0 /> Kullanıcı adı veya parola yanlış!</center>";
header("Refresh: 2; url=index.php");
}
mysql_close();
ob_end_flush();
?>