Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End How to pass arrays in URL Re: How to pass arrays in URL

#82811
xyzoblivion
Member

sessions are risky users may not have enabled it on their browsers. I found another way to do it i don’t know if there are other ways to do it(there must be) …

On page1 do the following:

$serialize = serialize($array);
echo “Go “;

?>

and on page 2

echo $name . “
“;

?>

and it worked :)