$_SESSION variables

Permalink
I'm new to concrete. How do I add php code to a page? I want to set variables and some pages and pass those values to other pages using $_SESSION variables.

 
Gondwana replied on at Permalink Reply
Gondwana
session_start();
$_SESSION['myNamespace']['value'] = $value;

This probably isn't very kosher by c5 standards. A lot can be done using c5 actions; eg,
https://documentation.concrete5.org/developers/working-with-pages/si...

Much more is possible.