Welcome Guest, Not a member yet? Register   Sign In
getJSON in CI problem
#9

[eluser]narkaT[/eluser]
there's nothing special about implementing such a
functionality with CI.
Just create a controller that handles the data fetching:

Code:
class Fetchselectboxes extends Controller {
    /*
     * .....
     */

    function fetchjson($id) {
        $data = array();
        //fetch data from DB an prepare it...

        echo json_encode($data);
    }
}

you could then access the data with the following url:
Code:
www.yourdomain.com/fetchselectboxes/fetchjson/<id>

the most work will be done on the client-side, so the server-side
implementation is quite simple Wink

Greetings
Jan


Messages In This Thread
getJSON in CI problem - by El Forum - 09-21-2008, 11:15 AM
getJSON in CI problem - by El Forum - 09-21-2008, 01:55 PM
getJSON in CI problem - by El Forum - 09-22-2008, 12:44 AM
getJSON in CI problem - by El Forum - 09-22-2008, 03:29 PM
getJSON in CI problem - by El Forum - 09-23-2008, 01:02 AM
getJSON in CI problem - by El Forum - 09-30-2008, 01:29 AM
getJSON in CI problem - by El Forum - 09-30-2008, 02:52 AM
getJSON in CI problem - by El Forum - 09-30-2008, 05:02 AM
getJSON in CI problem - by El Forum - 09-30-2008, 10:24 AM
getJSON in CI problem - by El Forum - 10-09-2008, 03:12 PM
getJSON in CI problem - by El Forum - 10-10-2008, 05:45 AM
getJSON in CI problem - by El Forum - 10-10-2008, 08:46 AM
getJSON in CI problem - by El Forum - 10-10-2008, 10:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB