I would like to session_register an array produced in a function which is included in main php page.How do I get the session varible's value in main page and other page ?
Please give me some advices,Thanx!
I do as following in the include file:
<?
function test($fff) {
...
$field=array(..);
$seri_field=serialize($field);
session_register("seri_field");
...
...
}
?>
and in the main page :
<?
...
test($fff);..
$unseri_field=unserilize($seri_field);
echo $unseri_field[0];
..
?>
I can't get any value in the main page!
maybe what I can do is only to return the array to main page and session manage in the main page?