Hi I place a piece of code and its result. I don't know why array value is not shown. Even when I use array_key_exists(), it returns false this is the code: $sql = mysql_query("SELECT * FROM brokerprices"); while (list($name,$value) = mysql_fetch_row($sql)) { $result[$name]=$value; } print_r($result); echo "<br><br>But there should be '0.79' that is not:".$result[ASAS]; PHP: