node/$db->source type $db->type and redirected to $db->target on ".format_date($db->timestamp, $type='medium'). " by remote $db->ip .
";
}
return $output;
}
function statistics_track_menu() {
$items = array();
$items['trackings'] = array(
'title' => t('Trackings'),
'page callback' => 'show_information_page',
'access arguments' => array('administrate statistics_track'),
'type' => MENU_NORMAL_ITEM,
);
return $items;
}
*/
function statistics_track_init() {
if($_GET['r'] == 'flash') {
$sql = "INSERT INTO statistics_track ";
$sql .= "VALUES ('', 0, 'node/".arg(1)."', '".$_SERVER['REMOTE_ADDR']."', 'flash-banner', '".mktime()."');";
db_query($sql);
}
}