-
Notifications
You must be signed in to change notification settings - Fork 0
/
kullanici_crud.php
41 lines (33 loc) · 946 Bytes
/
kullanici_crud.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
<?php
session_start();
require 'baglan.php';
require 'inc/fonksiyonlar.php';
echo "selam";
die('Bitti');
$id = $_POST['kullanici_id'];
if ($id) {
echo "selam";
print_r($id);
die('Bitti');
$guncelle = new veriTabani();
$sorgu = $guncelle->kayitGuncelle('kullanicilar',
$alanlar=array(
'kullanici_gorunen_adi',
'kullanici_adi',
'kullanici_epostasi',
'kullanici_parolasi',
'kullanici_yetkisi',
'kullanici_resim'),
$degerler = array(
$_POST['kullanici_gorunen_adi'],
$_POST['kullanici_adi'],
$_POST['kullanici_epostasi'],
md5($_POST['kullanici_parolasi']),
$_POST['kullanici_yetkisi'],
$_POST['kullanici_resim']),
$sorgu_alan='kullanici_id',
$sorgu_deger=$_POST['kullanici_id']);
echo $sorgu;
echo'<meta http-equiv="refresh" content="0;URL=kullanicilar?id='.$_POST['kullanici_id'].'">';
}
?>