Quantcast
Channel: CodeIgniter Forums - All Forums
Viewing all articles
Browse latest Browse all 14343

Delete not working properly as wanted

$
0
0
I have a column called code which stores a unique id when user previews a post.

If code is empty it should not remove the row. But for some reason deletes rows the code column is empty as well.

How can I make sure it only removes rows if code is present and has been there for more than 15min


PHP Code:
public function clear_unconfirmed_post() {
     $this->db->select('code');
     $this->db->from($this->db->dbprefix 'post');
     $query $this->db->get();

     if (!empty($query->row()->code)) {    
            
// The where below is OK
            $this->db->where('date_created < UNIX_TIMESTAMP(DATE_SUB(NOW(), INTERVAL 15 MINUTE))'NULLFALSE); 
            $this->db->delete($this->db->dbprefix 'post');
     }



I have tried


PHP Code:
public function clear_unconfirmed_post() {
        $this->db->where('code is NOT NULL'NULLFALSE);
        $this->db->where('date_created < UNIX_TIMESTAMP(DATE_SUB(NOW(), INTERVAL 15 MINUTE))'NULLFALSE);
        $this->db->delete($this->db->dbprefix 'post');


Viewing all articles
Browse latest Browse all 14343

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>