Hi everybody
I want to create a session in order to move the results of a search to different pages of the site while youre navigating so you dont have to go back to the search engine in case you need another option of your search.
This is what I`ve done and doesn´t work. If somebody can help me out I will appreciate it a lot.
Thank you
search.php_--------------------------------------------------------->
$sessarray=array();
while ($row = mysql_fetch_array($result)) {
$ID = $row["ID"];
$Name = $row["Name"];
$Photo = $row["Photo"];
$sessarray[$ID]=$Photo;
$_SESSION["list"]=$sessarray;
data.php------------------------------------------------------------->
<?php
session_start();
?>
{Session.list}
It is suppose to bring the results of the search to this new page data.php.
Maybe I`m missing something basic here