Basic functions

$phpgw->link

$phpgw->link($url)

Add support for session management. ALL links must use this, that includes href's form actions and header location's. If you are just doing a form action back to the same page, you can use it without any parameters. This function is right at the core of the class because it is used so often, we wanted to save developers a few keystrokes. Example:
<form name=copy method=post action="<?php echo $phpgw->link();?>">
/* If session management is done via passing url parameters */
/* The the result would be */
/* <form name=copy method=post action="somepage.php?sessionid=87687693276?kp3=kjh98u80"> */