Posted by sunnyboy on 02/26/06 23:38
Hi
Like to change the value of a session variable by clicking a link
------------------------------
<?php
session_start();
session_register("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
[Back to original message]
|