I realized that I can write two javascripts to handle this.. Better ideas are welcomed...
1. Forgive all the PPPPPs.
I'm stumped. Is there a way to pass a parameter (cookie?) between two RW PHP pages?
page1 > sends the id number of a person..
page2 > reads the id number..
How do you add the cookie id to the page title?
Thanks!! It's time for a scotch...
Comments
1. Cookies, which exist (persist) between browser sessions
2. Session variables, which go away after the browser session is done
A cookie is used for example to hold login information so the visitor doesn't have to enter it every time he/she goes to the site. Session variables are preferable for transient data that's only needed for the current session. It's the need for persistence that determines whether you use one or the other.
To use a session variable, put the following into Page Info]Header]Prefix for all pages that use the variable:
To set a session variable's value:
To get a session variable's value:
or
To add the variable value to the title field, simply embed the PHP in the field as follows:
The important thing to remember is you need to do the session_start before using any session variables. Cookies are not much more difficult to use. Without getting into details you can read about them here:
http://www.w3schools.com/php/php_cookies.asp
Vasily
The High-Tech Coach