Welcome Guest, Not a member yet? Register   Sign In
Update Link Visits
#3

[eluser]Phil Sturgeon[/eluser]
Something like:

Code:
function add_visit($id) {
        $this->db->update('links', 'visits = visits + 1', array('id' => $id));
        return ($this->db->affected_rows() > 0);
    }

That will update it by 1 and give you a true/false response over whether or not it actually did anything.


Messages In This Thread
Update Link Visits - by El Forum - 08-09-2009, 06:07 PM
Update Link Visits - by El Forum - 08-09-2009, 06:30 PM
Update Link Visits - by El Forum - 08-10-2009, 02:36 AM
Update Link Visits - by El Forum - 08-10-2009, 08:28 AM
Update Link Visits - by El Forum - 08-10-2009, 08:39 AM
Update Link Visits - by El Forum - 08-10-2009, 09:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB