EVOLUTION-NINJA
Edit File: Expiry_model.php
<?php namespace App\Models; use CodeIgniter\Model; class Expiry_model extends Model { protected $table = 'register_user'; public function getUserDetails() { $this->select('*'); $this->where('suscription_till > 0'); $this->where('suscription_till < NOW()'); $this->where('valid_user',1); $query = $this->get(); if ($query->getNumRows() > 0) { return $query->getResult(); } else { return []; } } } ?>