Do you trying to passing variables to target link?
It could be useful if you want to use 3rd party counter, ads tracking, etc.
To do this you need to hack go.php and link.class.php
Here is the direction:
1. Pass the variables to go.php
2. You need to change this code in go.php to receive your variables line 40-47
Code:
if(!in_array($id,$ses_links) || count($ses_links)==0) {
$_SESSION['indexu_session_links'] = $_SESSION['indexu_session_links']."$id;";
$links_obj->Go($id,true,$var1,$var2);
}
else {
$links_obj->Go($id,false,$var1,$var2);
}
3. Edit /lib/link.class.php function Go() line 2836, to receive your var
Code:
function Go($id,$count=true,$var1,$var2) {
Line 2875
Code:
$url = $var1.$url.$var2;
header("Location: $url");
Do not try it yet, but logically work