Hello,
Anyone ever use phpOpenTracker?
I'm trying to log custom document titles for dynamic pages so non programmers can understand some of it. I used this method:
// prepend phpOpenTracker
include 'phpOpenTracker.php';
// log access
phpOpenTracker::log(
array(
'Added #'.$showPart->partnumber.' - '.$showPart->partname.' to the basket.' => 'BuyHPI'
)
);
However, the system is still only logging the page name instead of the custom title I specified. Is there something I'm doing wrong?
Thanks!