-
Notifications
You must be signed in to change notification settings - Fork 2
/
mesajlarim_gonderilen.php
187 lines (168 loc) · 5.87 KB
/
mesajlarim_gonderilen.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
include "header.php";
if ($_SESSION["kullanici_loginkey"] == "") {
// oturum açılmamışsa login.php sayfasına git
header("Location: index.php");
}
// silme mesajı burada yer alacak
$islem = isset($_GET['islem']) ? $_GET['islem'] : "";
// eğer silme (sil.php) sayfasından yönlendirme yapıldıysa
if($islem=='silindi'){
echo "<div class='alert alert-success'>Kayıt silindi.</div>";
}
else if($islem=='silinemedi'){
echo "<div class='alert alert-danger'>Kayıt silinemedi.</div>";
}
$sorguKime = "SELECT id FROM kullanicilar WHERE eposta='".$_SESSION["kullanici_loginkey"]."' LIMIT 0,1";
$stmtKime = $con->prepare($sorguKime);
$stmtKime->execute();
$kayitKime = $stmtKime->fetch(PDO::FETCH_ASSOC);
$sorguGelenMesaj = "SELECT * FROM kullanicilar_mesaj WHERE k_msj_kimden='".$kayitKime['id']."' GROUP BY k_msj_kime ORDER BY k_msj_id DESC";
$stmtGelenMesaj = $con->prepare($sorguGelenMesaj);
$stmtGelenMesaj->execute();
$sayGelenMesaj = $stmtGelenMesaj->rowCount();
$veriGelenMesaj = $stmtGelenMesaj->fetchAll(PDO::FETCH_ASSOC);
?>
<div class="container p-5">
<!-- Başlık burada yer alacak -->
<h1 class="text-center baslik">Mesajlar</h1>
<p class="text-center p-4">Gelen kutunuzu ve gönderilen mesajlarınızı aşağıdan görebilirsiniz.</p>
<a href='mesajlarim.php' class='btn btn-success pull-left'>Gelen Mesajlara Bak</a>
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="get">
<div class="row">
<div class="col-xs-6 col-md-8">
<div class="input-group">
<input type="text" class="form-control" placeholder="Mesaj ara...(İsim ya da mesaj aratabilirsiniz)"
name="aranan" value="<?php //echo isset($_GET['aranan']) ? $_GET['aranan'] : ""; ?>"/>
<div class="input-group-btn">
<button class="btn btn-primary" type="submit">
Ara
</button>
</div>
</div>
</div>
</div>
</form>
<hr>
<div class="row mt-4">
<div class="col-md-12">
<div class='row justify-content-center'>
<div class='col-auto'>
<?php if($sayGelenMesaj>0){ ?>
<table class="table table-hover table-responsive table-bordered favori-tablo">
<tr>
<th> <a href='#' id='btn_sil' class='btn btn-danger pull-left'>Seçilenleri Sil</a> </th>
<th>Kime</th>
<th>Konu</th>
<th>İşlem</th>
</tr>
<?php
foreach ($veriGelenMesaj as $kayitGelenMesaj) {
?>
<tr>
<td><?php echo "<input type='checkbox' name='sil_id[]' value='".$kayitGelenMesaj['k_msj_id']."'/>"; ?></td>
<td><?php
$sorguMsjKimdenAdSoyad = "SELECT adsoyad FROM kullanicilar WHERE id='".$kayitGelenMesaj['k_msj_kime']."' LIMIT 0,1";
$stmtMsjKimdenAdSoyad = $con->prepare($sorguMsjKimdenAdSoyad);
$stmtMsjKimdenAdSoyad->execute();
$kayitMsjKimdenAdSoyad = $stmtMsjKimdenAdSoyad->fetch(PDO::FETCH_ASSOC);
echo $kayitMsjKimdenAdSoyad['adsoyad'];
?></td>
<td><?php echo mb_substr($kayitGelenMesaj['k_msj_konu'],'0','60','UTF-8')."..."; ?></td>
<td>
<?php
$sorguMsjIcerik = "SELECT * FROM kullanicilar_mesaj WHERE k_msj_id<".$kayitGelenMesaj['k_msj_id']." AND k_msj_kimden=".$kayitGelenMesaj['k_msj_kime']." AND k_msj_kime=".$kayitGelenMesaj['k_msj_kimden']." AND k_msj_konu='".$kayitGelenMesaj['k_msj_konu']."'";
$stmtMsjIcerik = $con->prepare($sorguMsjIcerik);
$stmtMsjIcerik->execute();
$sayMsjIcerik = $stmtMsjIcerik->rowCount();
$kayitMsjIcerik = $stmtMsjIcerik->fetch(PDO::FETCH_ASSOC);
if($sayMsjIcerik>0){
// kayıt detay sayfa bağlantısı
echo "<a href='msj_detay.php?id=".$kayitMsjIcerik['k_msj_id']."' class='btn btn-info m-r-1em'> <span
class='glyphicon glyphicon glyphicon-eye-open'></span> Detay</a>";
}else{
// kayıt detay sayfa bağlantısı
echo "<a href='msj_detay_gonderilen.php?id=".$kayitGelenMesaj['k_msj_id']."' class='btn btn-info m-r-1em'> <span
class='glyphicon glyphicon glyphicon-eye-open'></span> Detay</a>";
}
// kayıt sil
echo "<a href='#' onclick='silme_onay(".$kayitGelenMesaj['k_msj_id'].");' class='btn btn-danger'> <span
class='glyphicon glyphicon glyphicon-remove-circle'></span> Mesaj Grubunu Sil</a>";
?>
</td>
</tr>
<?php
}
?>
</table>
<?php }else{
echo "<div class='alert alert-success text-center'>Gönderilen mesaj kutunuz boş görünüyor...</div>";
} ?>
</div>
</div>
</div>
</div>
</div>
<?php include "footer.php"; ?>
<!-- Kayıt silme onay kodları bu alana eklenecek -->
<script type='text/javascript'>
// kayıt silme işlemini onayla
function silme_onay( k_msj_id ){
var cevap = confirm('Bu mesaj grubuna ait tüm mesajlarınızı silmek istiyor musunuz?');
if (cevap){
// kullanıcı evet derse,
// id bilgisini sil.php sayfasına yönlendirir
window.location = 'msj_sil.php?id=' + k_msj_id;
}
}
</script>
<!--- SweetAlert destekli çoklu silme --->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$('#btn_sil').click(function(){
var k_msj_id = [];
$(':checkbox:checked').each(function(i){
k_msj_id[i] = $(this).val();
});
if(k_msj_id.length === 0){ //dizi boşsa bilgi ver
swal("Silmek için seçtiğiniz bir kayıt yok!",{
icon: "error",
buttons: false,
timer: 3000,
});
}
else {
swal({ // onay al
title: "Emin misiniz?",
text: "Silme işlemi geri alınamaz!",
icon: "warning",
buttons: ["Hayır", "Evet"],
dangerMode: true,
closeModal: false,
})
.then(function(yes){
if (yes)
$.ajax({
cache: false,
type: 'POST',
url: 'msj_coklusil.php',
data: {k_msj_id:k_msj_id},
success: function(sonuc){
swal("Seçili kayıtlar silindi!", {
icon: "success",
buttons: false,
timer: 3000,
});
// silinen kayıtları html tablosundan da sil
jQuery('input:checkbox:checked').parents("tr").remove();
},
error: function(jqXHR, textStatus, errorThrown){
alert(textStatus + errorThrown);
}
});
})
}
});
});
</script>