[eluser]cybersven[/eluser]
Introduction :
I navigate through my application only with the Keyboard.
Each key is a link
In my controller, I'm testing a condition like this before rendering the page :
Code:
if($data["results"]==TRUE)
{
$this->render_page('home/index', $data);
}
I would like to do nothing if condition is FALSE, I mean even if you press a key, you will stay on the page.
Actually if condition is FALSE I got a blank page after pressing a key
A refresh or redirection on the same page, will create a loop...
How can I solve this ?