- you can use hidden variables
- pass in url
- store in a global variable
- store as a seession variable
1.
<input type=hidden name=title value=yourtitle>
2.
<a href="index.php?title="<? $_REQUEST['title']; ?>">nextpage</a>
(passes the var title the result of whatever request['title'] was
or, if you have a local var ($title); just put $title inplace of request['title']
i'm tired and don't exactly know the syntax for global vars off top of head...
same with 4.
basically 4 sends it along through the browser session of the user.
it's something like...
session_start();
session_register('title') = 'title'; // i think
i think that's all you need, but i'm not fluid in session language yet 🙂 i tried