Hi, that is not really a problem (Got the basics online at www.bio-vision.nl/statistics/report.php).
Now I am dissembling the urls, using specific routines for each browser:
if preg_match("/altavista/i", "$HTTP_REFERER"))
{
$referer = "Altavista";
$keywords = breackup($HTTP_REFERER, 'AV');
}
But now I have a hard time getting the url broken up.
I am using
$urlextent = explode ('?', $HTTP_REFERER);
$urlextend = $urlextend[1];
$extention = explode('&', $urlextend);
to get the subsets of each url. But I cannot grab the variables. Not sure what it going wrong though. Been playing for about an hour. Still no luck..
I'll get there eventually..
J