[Solved] isset not working correct. |
Hello all, I am trying to make a <body class="<?php echo $class;?>"> to help with my specialized css
For example if isset uri->segment(1) and (2) then would show something like this <body class="page-category-121"> which is correct But if the uri segments not set I need it to be <body class="common-home"> that would mean it on base url page the home page for some reason when on home page it shows just <body class="-"> When on main url / base url how can I make it show <body class="common-home"> PHP Code: $page_id = $this->input->get('page_id');
There's only one rule - please don't tell anyone to go and read the manual. Sometimes the manual just SUCKS!
The problem is that the variables $page_id and $path are set so will always evaluate to TRUE. Use empty() instead
Code: $page_id = $this->input->get('page_id');
$this->uri->segment(x) always returns a value, and so will $this->input->get(x), so they will always pass "isset". If you are using CI2.x, they return FALSE if the segment or get parameter didn't exist. So that's probably what you want to check for (!==FALSE) instead of isset().
(04-22-2015, 07:29 AM)kilishan Wrote: The problem is that the variables $page_id and $path are set so will always evaluate to TRUE. Use empty() instead Thanks every one works great now.
There's only one rule - please don't tell anyone to go and read the manual. Sometimes the manual just SUCKS!
|
Welcome Guest, Not a member yet? Register Sign In |