I have the following session for areacode:
$_SESSION["search_pars"]["areacode"] = $areacode;
How can i do a print to see what value is in the above session variable.
Thank you.
print_r($_SESSION):
Or:
echo $_SESSION['search_pars']['areacode']; /** * OR */ echo '<pre>'; var_dump($_SESSION); echo '</pre>';
~Brett