Şey o döngüdede heralde user idi get ilemi almam gerekiyor giriş yapmışsa get idi alıp oraya eklemeliyim heralde kullanicinin idine göre bilgi çekicem de





[PHP]?>

include 'config.php';
if ( $_SESSION['admin'] == 'yes' ) {
} else {
die('test');
}

?>


?>






Bilgilerim


Bilgilerinizi görebilirsiniz










$sorgu = $baglanti->query("SELECT * FROM list_order");


while ($sonuc = $sorgu->fetch_assoc()) {

$id = $sonuc['id'];
$kullanici_id = $sonuc['kullanici_id'];
$total = $sonuc['total'];
$product_price = $sonuc['product_price'];
$status = $sonuc['status'];

?>




































SİPARİŞ NUMARAM ÜRÜN ADİ ÜRÜN FİYATI SİPARİŞ DURUMU







}
// Tekrarlanacak kısım bittikten sonra PHP tagının içinde while döngüsünü süslü parantezi kapatarak sonlandırıyoruz.
?>
[PHP]