I want to pass a variable from one PHP page to another without using a form. Can any point me in the right direction?
Use a [man]session[/man]?
Sorry, I should have explained in more detail.
I am already using sessions, but what I want to do is pass a variable such as a message related to the page the user is viewing to the next page for display.
I am already using sessions
Good. Then you know how to use them.
Put it in a session variable and retrieve it on the next page.
And while sessions are the best way to pass any data between pages, you could also append a short message to the URl as a query.