Welcome Guest, Not a member yet? Register   Sign In
Search and Pagination
#2

(04-20-2020, 11:40 AM)Maria Renata Wrote: Pagination works simple and well when I list my db with 600 records

But when I have to include a search, only the first page of the pagination works well and counts the records correctly, when I click on the second page the system disregards the item searched and returns to list all the pages.

Please help me to implement the code correctly.

Code:
public function search(){     

$model = new MyModel;
$name = $this->request->getVar('name') ;

$data = [
'value' => $model->orderBy('uf', 'asc')
->like('name', $name)
->paginate(10),

'pager' => $model->pager
];


echo view('mycontroller/search',$data);

}

Hi!
Try this.
In the example below you can bring all the results from the table or just one field.
If no field name is given, all the records in the table will be returned, otherwise, only the records for the given field, name, will be returned.

PHP Code:
-<?php

// 20200420

namespace App\Models;

use 
CodeIgniter\Model;

class 
MyModel extends Model
{
    protected $table  'users';
    
    
    
public function getNames($name null) {
        if ($name === null)
        {
                return $this->findAll();
        }

        return $this->asArray() // It can be object too.
                    ->like(['name' => $name]);
                    // ->first(); <= If you just want the first name found.
    }


Reply


Messages In This Thread
Search and Pagination - by Maria Renata - 04-20-2020, 11:40 AM
RE: Search and Pagination - by wdeda - 04-20-2020, 07:51 PM
RE: Search and Pagination - by Maria Renata - 04-22-2020, 03:57 PM



Theme © iAndrew 2016 - Forum software by © MyBB