Hey all,
my problem is when I try to update a single record, than it dosent update the record. Here is my code that I use in the model.
public static function updateProfile($user_id) {
$profile = self::findFirst(array('mUser_id = :user_id:', 'bind' => array('user_id' => $user_id)));
$profile->setVisits($profile->getVisits() + 1);
$profile->update();
}
Thx for help :)