I'm using codeigniter 2.1 and I defined a function as follows.
public function reset($email, $hash) {
}
According to MVC architecture
and OOPS
concept, the function could not execute if I did not pass the parameters
in the url
. But in codeigniter this function gets executing, So how can i overcome this?. Please help me to find solutions.