Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Clear variables with a click of a link?
I have my site remember various variables from page to page with php, but I’d like to be able to clear them with the click of the “home” button image. How do I do that?
Thanks!
h.
Oh, my php stuff is in this kind of form:
<txp:php>
session_start();
$_SESSION['gs_page'] = page_url(array("type" => "pg"));
</txp:php>
</txp:if_individual_article>
<txp:php>
global $variable;
session_start();
$variable['gstotal'] = $_SESSION['gs_total'];
</txp:php>
Offline