Can anyone tell me where am I wrong?
I am trying to start a session and so in the first lines of index.phtml I put
<?
session_start();
session_register($name);
$name=XYZ;
?>
...then on some other page that has a link in the index.phtml (let's call it add.phtml)
I do
<?
session_start();
print $name;
?>
I would normally expect to get in add.phtml a simple line like "XYZ" yet I get nothing except a "?SESSID=9bc2e4762c5ea1c2b6bf31c222e474d2" added to http://myserver/add.phtml!!!
So what is wrong? What have I missed? Is it about php.ini or what! I have track-vars and trans-id enabled!
Lots of thxs for your help!
Vic