-
Notifications
You must be signed in to change notification settings - Fork 0
/
havalebildirimformusonuc.php
75 lines (42 loc) · 1.48 KB
/
havalebildirimformusonuc.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
if (isset($_POST["IsimSoyisim"])){
$GelenIsimSoyisim = Guvenlik($_POST["IsimSoyisim"]);
}else {
$GelenIsimSoyisim = "";
}
if (isset($_POST["EmailAdresi"])){
$GelenEmailAdresi = Guvenlik($_POST["EmailAdresi"]);
}else {
$GelenEmailAdresi = "";
}
if (isset($_POST["TelefonNumarasi"])){
$GelenTelefonNumarasi = Guvenlik($_POST["TelefonNumarasi"]);
} else {
$GelenTelefonNumarasi ="";
}
if (isset($_POST["BankaSecimi"])){
$GelenBankaSecimi = Guvenlik($_POST["BankaSecimi"]);
} else {
$GelenBankaSecimi = "";
}
if (isset($_POST["Aciklama"])){
$GelenAciklama = Guvenlik($_POST["Aciklama"]);
} else {
$GelenAciklama = "";
}
if (($GelenIsimSoyisim!="") and ($GelenEmailAdresi!="") and ($GelenTelefonNumarasi!="") and ($GelenBankaSecimi!="")){
$HavaleBildirimiKaydet = $VeritabaniBaglantisi->prepare("INSERT INTO havalebildirimleri (BankaId, AdiSoyadi, EmailAdresi, TelefonNumarasi, Aciklama, İslemTarihi, Durum) values (?, ?, ?, ?, ?, ?, ?)");
$HavaleBildirimiKaydet->execute([$GelenBankaSecimi, $GelenIsimSoyisim, $GelenEmailAdresi, $GelenTelefonNumarasi, $GelenAciklama, $ZamanDamgasi, 0]);
$HavaleBildirimiKaydetKontrol = $HavaleBildirimiKaydet->rowCount();
if ($HavaleBildirimiKaydetKontrol>0){
header("Location:index.php?SK=11");
exit();
}else{
header("Location:index.php?SK=12");
exit();
}
} else {
header("location:index.php?SK=13");
exit();
}
?>