Hi
Like to change the value of a session variable by clicking a link
------------------------------
<?php
session_start() ;
session_registe r("cat");
?>
<a href="index.php " onMousedown=<? $_SESSION['cat']=1; ?>Set cat to
1</a>
<a href="index.php " onMousedown=<? $_SESSION['cat']=2; ?>Set cat to
1</a>
-----------------------------
Any ideas why this is not working and how I could do it?
Cheers
Sunnyboy
Like to change the value of a session variable by clicking a link
------------------------------
<?php
session_start() ;
session_registe r("cat");
?>
<a href="index.php " onMousedown=<? $_SESSION['cat']=1; ?>Set cat to
1</a>
<a href="index.php " onMousedown=<? $_SESSION['cat']=2; ?>Set cat to
1</a>
-----------------------------
Any ideas why this is not working and how I could do it?
Cheers
Sunnyboy
Comment