|
you sure you have followed the STEP1 and STEP 2 in the first post???
1)add var clicks: var $clicks=0;
2) after function store_basic add following function:
$clicks=$this->clicks+1;
$sql = "UPDATE " . table_links . " set `clicks`=$clicks WHERE link_id=".$this->id;
$db->query($sql);
} [/color]
|