I have a function that calls a specific task in the index.php using a $_GET['arg'] variable. the way this task is called is from a link. so its like this:
<a href="index.php?do=yes">click here</a>
is there another way to do this using $SESSION and a hyperlink? basically I'd like to use $SESSION variables as much as I can instead of $GET and $POST variables.