Is there a way to reference a passed value in HTML without using a scripting language?
Example:
page1.php?test=1 to page2.php
I can reference the value thru PHP. Is there another way?
The simple answer to "is there another way" is YES. Perl and any other CGI interface comes to mind. But straight HTML won't be able to "process" any parameters. HTML is the end result forwarded to the browser by the web server. Usually some agent (perl, php, etc.) produces HTML based on computations against passed parameters.
Thanks. I'll try using PHP sessions.