Source for file libdata.php
Documentation is available at libdata.php
* Data table manipulation class
* @author Christopher Troup <mini@chatetheory.com>
require_once 'libdb.php';
* Class constructor. Set class data.
* @param integer $site_id Site index
* @param integer $profileId Profile index
* @param string $path Requested path
* @param string $referrer Referring page
* @return mixed false if site id is given as null.
function phpusertrack_data($site_id = null, $profileId = null, $path = null, $referrer = null) {
* Record that the user requested the path.
$sql = 'insert into ' . $conf['dataTable'] . ' set ip_id=' . $this->_profileId .
|