I've tried to pass a variable to session_register() via 'href="blah.php?id=5" ' but it doesn't seem to work.. Any thoughts, ideas, or assistance on how to accomplish this would be greatly appreciated.
thanks peter
session_start(); session_register('pid'); $pid = $id; // from the URL
hth
..... session_register("id"); ..... <a href="blah.php?id=5">blah..blah...blah....</a> ......
Did u mean this ??
may be u can try this .... session_register("id"); ..... <a href="blah.php?$_SESSION["id"]=5">i hope this will help.</a> .....