Is it possible to pass a pre defined variable from one page to another so it can be picked up with $_POST['variable'] without using to form tags and such?
You can pass with sessions, cookies, databases, flat files, etc i you don't want to use a hidden input tag
Though, if it's predefined, you could just put it into a file, and include it on the pages you want to.