Welcome Guest, Not a member yet? Register   Sign In
Incrementing a counter in the database
#4

[eluser]CI Simon[/eluser]
Oops 4.1.20 is the live database. Ive tried so many ways of doing this and they all seem to work locally and not live.

This also works locally but not live:

Code:
if ($query->num_rows() > 0) {

            foreach ($query->result() as $advertisers) {
                
                    $advertiser_id_array[] = $advertisers->id;
    
                    $output .= $advertisers->company_email;
                    $output .= ", ";
                    
                    $count = $advertisers->company_count;
                    $count = $count + 1;
                    
                    $sql = "UPDATE fq_company SET company_count = '$count' WHERE id = '$advertisers->id'";
                    $this->db->query($sql);
                    
                }
            
            $output = substr ($output, 0, -2);
            
        
        }


Messages In This Thread
Incrementing a counter in the database - by El Forum - 08-31-2008, 01:28 PM
Incrementing a counter in the database - by El Forum - 09-03-2008, 12:38 AM
Incrementing a counter in the database - by El Forum - 09-03-2008, 01:03 AM
Incrementing a counter in the database - by El Forum - 09-03-2008, 02:41 AM
Incrementing a counter in the database - by El Forum - 09-06-2008, 09:20 AM
Incrementing a counter in the database - by El Forum - 09-07-2008, 10:05 AM
Incrementing a counter in the database - by El Forum - 09-08-2008, 12:47 AM
Incrementing a counter in the database - by El Forum - 09-08-2008, 01:44 AM
Incrementing a counter in the database - by El Forum - 09-08-2008, 02:59 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 05:59 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 06:55 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:10 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:16 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:21 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:28 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:32 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:35 AM
Incrementing a counter in the database - by El Forum - 05-30-2009, 11:29 AM



Theme © iAndrew 2016 - Forum software by © MyBB