how to get specific data by key name from the following foreach code.
<?php
foreach ($_SESSION as $key=>$val)
echo $key." ".$val."<br/>";
?>
array is look like this want to get value of specific key.
{"name":"bedroom","rent":"sale","props":"","leases":""}
i have tried following code but doesn't work
echo "checking key sep. ".$key[rent];
if possible i can access by key name like name or rent.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…