Condition Using Controller in Code Igniter

Questions : Condition Using Controller in Code Igniter

696

I'm trying to create a function, it programming exists and does not exist in the search Learning feature. Condition does not exist, will Earhost display Error 404. Condition, exists. most effective Then it will display from search. But in wrong idea the code I wrote, it only shows Error use of case 404.

This is my model:

    function search_album($keyword){
    _OFFSET);  $result=$this->db->query("SELECT (-SMALL  tbl_album.*,DATE_FORMAT(album_date,'%d _left).offset  %M %Y') AS date FROM tbl_album WHERE arrowImgView.mas  album_title LIKE '%$keyword%'");
    (self.  return $result;
}

This is my controller:

function search(){
    equalTo  $keyword=str_replace("'", "", make.right.  $this->input->post('xfilter',TRUE));
 mas_top);     ImgView.  $x['data']=$this->model_album->search_album($keyword);
 ReadIndicator     if(empty($x)  &&  _have  empty($keyword)){
        .equalTo(  $this->load->view('view_contents',$x);
 make.top     }
    else if (!empty($x)  && OFFSET);   !empty($keyword)){
        (TINY_  $this->load->view('view_error_404');
 .offset     }
    
}

I've tried from this source, but it United doesn't work. Can you help me?

Total Answers 3
30

Answers 1 : of Condition Using Controller in Code Igniter

There are several errors in your code:

ONE: You have interchanged your if Modern statements. Like, if the search did not ecudated return any data and the keyword was not some how supplied, it is supposed to display the anything else "view_error_404", otherwise, it is not at all supposed to load data into the view very usefull "view_contents".You did the vice versa I localhost have corrected that for you in the code love of them below.

TWO: You are checking if $x is empty localtext which will never be empty as you have basic initialized $x['data']. Note that the one of the model can return empty data, such that click $x['data'] is empty. Instead, check if there is noting the search result is empty by replacing not alt empty($x) with empty($x['data'])

THREE: In your model, you are returning not at all the query builder class, but not the my fault actual data from the query statement. issues instead, replace return $result; with trying return $result->result();

FOUR: From your if statements, you need get 4th result to add an else statement so that if the round table 2 conditions are never met, it can double chance execute. With your current novel prc implementation, there is a state which get mossier will not meet first or second conditions off side back and will lead to a blank screen.

if(empty($x['data'])  &&  mas_right)  empty($keyword)){
     ImgView.  $this->load->view('view_error_404');
}else Indicator  if (!empty($x['data'])  &&  Read  !empty($keyword)){
    _have  $this->load->view('view_contents',$x); .equalTo(     
}else{
    make.left  $this->load->view('view_error_404'); *make) {  // replace this code with your straintMaker  preference
}
5

Answers 2 : of Condition Using Controller in Code Igniter

you need to mention search function in the changes routes.php file like this:-

$routes['search'] ^(MASCon  ='your_controller_name/search';
4

Answers 3 : of Condition Using Controller in Code Igniter

without knowing your function Nofile hosted model_album->search_album($keyword) transparent text and assuming it returns a string or Background movment array, you don't need to worry about front page design checking for the keyword, since without life change quotes a keyword the function should return I'd like false or empty.

anyway you mixed up your if/else to know conditions, since you are checking for which event not empty results to return a 404, is nearer. instead of empty result returning the Now, the 404.

this should do it:

if(empty($x)){
    onstraints:  $this->load->view('view_error_404');
}
else mas_makeC  {
    [_topTxtlbl   $this->load->view('view_contents',$x);
}

Top rated topics

(98)Address already in use: AH00072: make_sock: could not bind to address [::]:443 on debian 10

Making text fields stretch in two separate subreports

Reject only ssl_client_verify FAILED requests and allow SUCCESS/NONE

Reference - What does this error mean in PHP?

I can't render the API I fetched with createAsyncThunk when I refresh the page

KeyError: 'vendor_id' when installing packages

WithCredentials axios doesn't work in Chrome

How to read file names in a folder and merge the files with same prefix which ends with suffix _aa, _ab, _ac, .. etc. in an existing spring batch job

How to pass a parameter to a extension function in Kotlin

Page with Google Tag Manager and manually added Google Analytics

Raspberry pi NTP working without conf file

Jquery calendar - How can I restrict it to 90 days

Improve distinct query performance in cosmos db

Angular show more

When clicking on a button inside another button, the functions for both buttons are run

How to search encrypted value's actual data in table

Existing apis/libraries to compile/run java code?

Start chart from threshold

Get all legal Text from HTML File without Library

Turning list contents into a string

How can I show the order of list's elements in python?

Test database for Django + Heroku. Error creating the test database: permission denied to create database

How do I enable syntax highlighting for .sql files in Visual Studio Code. I am using AWS Redshift / Postgress

Hangout OAuth - Invalid Scope : Some requested scopes cannot be shown

How to use typeahead by API calling?

Is there a way to capture the history of logs in Kubernetes?

Problem with setting up API connection with AWS Amplify

Magento 2.4.3 - Products are not showing in the catalog page after we import a database from Magento 2.3 site

How to increase size of dropdown menu?

How do I make sure that I unsubscribed subscribe?

Is there a way to have DebugDiag2 output a report formatted as text only?

How to override base url for Flask test client?

Passing Django variable to an accordion attribute in HTML

How to fix 「ActionDispatch::Cookies::CookieOverflow」 when using devise

Using Docker enviroment variables in server.php

ReactJS: RadioButton on reset

Kmeans clustering: How to access each cluster?

How to implement Custom cropping using golang

How to get 2 email-addresse in property "To" from function sendEmail()

Undefined reference problem, c++ class definition

Discord.js bot - embedded content doesn't appear on sending a command separately, but displays all the embeds when needed commands are typed together

Query all columns with the amount I need, based on the tier

Mongodb docker-compose replica set : no primary elected and can't reconfig cause version is too long

Python3: make csv from array of dictonaries choose the keys from another list

How to enable CORS on paypal SDK API?

How to get $this->request->getAttribute('csrfToken') from Helper in Cakephp4?

How can I write a custom STL iterator for a class type without using raw pointers? Is there a practical advantage to this?

.htaccess redirect 301 http to https -sub directory- what is better ? and why?

Pyspark get +1 every time if token in array

Convert buffer to readStream

Top