Welcome Guest, Not a member yet? Register   Sign In
Am I doing this right?
#1

[eluser]Wonder Woman[/eluser]
Hi,


I am currently developing a search and I want it all to be controlled in the one controller.

Like such:

Code:
class Properties extends Controller {

    function index()
    {
        if($this->validation->run()==FALSE){
            $this->load->view('properties/index');
        }
        else {
            $this->load->view('properties/search');
        }
    }

    function search()
    {
        if($this->validation->run()==FALSE){
            $this->load->view('properties/search');
        }
        else {
            $this->load->view('properties/results');
        }
    }


    function results()
    {
                $data['results'] = 'results to go here';
                $this->load->view('properties/results', $data);
        }
}

Is this the best way to do this? I can't seem to get the urls correct, for example when I want the url to be 'properties/search' it just goes to 'properties'.

Any help would be great, thanks.


Messages In This Thread
Am I doing this right? - by El Forum - 08-10-2010, 03:53 AM
Am I doing this right? - by El Forum - 08-10-2010, 07:24 AM
Am I doing this right? - by El Forum - 08-10-2010, 08:26 AM



Theme © iAndrew 2016 - Forum software by © MyBB