I have three php pages:
search.phpwhich sets out a form with fields which are used to query a MYSQL databasequery.phpwhich queries the database with variables set insearch.php, and return a result array (which can be a large array), then redirect toresult.phpresult.php, display the results in a table form. This page is not connected to the database, and this page is also bookmarkable, ie if someone bookmarks that page, it will display the result again without quering the database.
My problem is that I don't know how to make the result page bookmarkable.. I used session to carry the variable from query.php to result.php but once the browser is closed, the result page will display nothing.
If someone can help, it will be highly appreciated.