Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Code Igniter Passing Variable to Controller Using URL Error

Tags:

codeigniter

I am creatting a Code Igniter project in which I want to pass a variable through the URL like a get statement, like this:
url: /site/cake/1
controller function: cake($var)
but when the variable is left blank, I receive an error, how can I get code igniter, to ignore this?

like image 311
jpoles1 Avatar asked Jan 31 '10 21:01

jpoles1


2 Answers

In your controller, do this:

function cake($var = null) {
    // your other code here
}

When $var isn't present in the URL, it will be set to null and you'll receive no error.

like image 197
Colin Brock Avatar answered Sep 20 '22 16:09

Colin Brock


To explain why Colin's answer works: The issue you had, was that there was no default value for that controller function. In php, creating a default value for a function parameter is done by assigning it a value in the function definition ($var = false). Now when the cake() function is called with no parameter, it will set $var to false by default.

like image 43
Seaux Avatar answered Sep 18 '22 16:09

Seaux