PHP Session belirli değerleri kayıt olmaz

0 Cevap php

Ben temel bir şey eksik sürece, bu çok garip.

Bir oturumda bunu ayarlamak için benim db veri almak, bu elle değerini ayarlarsanız ancak set alır, çalışmıyor.

This doesn't work.

$query = "SELECT * FROM example WHERE price='$id'";
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_assoc($result);

$price = $row['price'];

$_SESSION['order_details'] = array("price"=>$price);

This works.

$query = "SELECT * FROM example WHERE price='$id'";
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_assoc($result);

$price = $row['price'];

$price = '9.99';  

$_SESSION['order_details'] = array("price"=>$price);

Herhangi bir yardım büyük mutluluk duyacağız.

0 Cevap