-
Notifications
You must be signed in to change notification settings - Fork 2
/
eposta.php
34 lines (32 loc) · 1.04 KB
/
eposta.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
<?php
if($_POST){
// veritabanı yapılandırma dosyasını dahil et
include 'config/vtabani.php';
try{
// kayıt ekleme sorgusu
$sorgu = "INSERT INTO admin_mesajlar SET msj_isim=:msj_isim, msj_eposta=:msj_eposta, msj_konu=:msj_konu, msj_mesaj=:msj_mesaj";
// sorguyu hazırla
$stmt = $con->prepare($sorgu);
// post edilen değerler
$msj_isim=htmlspecialchars(strip_tags($_POST['isim']));
$msj_eposta=htmlspecialchars(strip_tags($_POST['eposta']));
$msj_konu=htmlspecialchars(strip_tags($_POST['konu']));
$msj_mesaj=htmlspecialchars(strip_tags($_POST['mesaj']));
// parametreleri bağla
$stmt->bindParam(':msj_isim', $msj_isim);
$stmt->bindParam(':msj_eposta', $msj_eposta);
$stmt->bindParam(':msj_konu', $msj_konu);
$stmt->bindParam(':msj_mesaj', $msj_mesaj);
// sorguyu çalıştır
if($stmt->execute()){
header('Location: hakkimizda.php?islem=tamam');
}else{
header('Location: hakkimizda.php?islem=hata');
}
}
// hatayı göster
catch(PDOException $exception){
die('ERROR: ' . $exception->getMessage());
}
}
?>