Welcome Guest, Not a member yet? Register   Sign In
Calling php controlller script from javascript file
#17

[eluser]TheFuzzy0ne[/eluser]
Sorry, I got that slightly wrong. It should be:
Code:
http.open('get', 'index.php/event/getRecord/' + stateid + '/' + userId);

So you controller would be something like this:

event.php
Code:
class Event extends Controller {

    function index()
    {
        // ...
    }

    function getRecord()
    {
        // Load the URI library
        $this->load->library('uri');
        
        // Set the vars.
        $state_id = $this->uri->segment(0);
        $user_id  = $this->uri->segment(1);
        
        // Do stuff here.
    }
}

I'm not sure if I got the segments right, but hopefully you get the point.


Messages In This Thread
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 03:39 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 03:56 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:07 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:09 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:11 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:18 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:38 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:42 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:53 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:56 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 04:58 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 05:05 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 05:14 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 05:18 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 05:22 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 05:24 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 05:50 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 07:23 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 07:29 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 07:35 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 07:40 AM
Calling php controlller script from javascript file - by El Forum - 05-01-2008, 02:27 PM



Theme © iAndrew 2016 - Forum software by © MyBB