I have some variables written in php that I want to follow the page from link to link. It will follow for two pages but anything after that it loses the variables. Is there anyway to do this effectively? thanks.
Why not use PHP sessions?
You could use sessions, hidden input tags w/ post/get.
I generally just pass the information by hidden input tags, if you do decide to use sessions make sure that you use the get method to avoid page expired messages.
cheers
John
I would also suggest using hidden input fields in a form and then reading variables and the putting it into field with the same name etc. etc.
Depending on what you're doing maybe have a look at using a function with global variables.