![]() |
How to load json file in codeigniter… newbie - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: How to load json file in codeigniter… newbie (/showthread.php?tid=55915) |
How to load json file in codeigniter… newbie - El Forum - 11-16-2012 [eluser]danny_ci[/eluser] Hi, everyone… I want to ask something about how to load json file in codeigniter But before load the json file, i want to pass some data to json file Any idea for this?? Thanks before Here is some code to load json file in jquery event calendar Code: $("#calendar").eventCalendar({ How to load json file in codeigniter… newbie - El Forum - 11-17-2012 [eluser]NeoArc[/eluser] Code: $data = json_decode(file_get_contents('file.json')); How to load json file in codeigniter… newbie - El Forum - 11-18-2012 [eluser]Ajaxboy[/eluser] If you use Cjax (http://ellislab.com/forums/viewthread/229077/), can do this to pass data: Code: $("#calendar").eventCalendar({ Code: Class Calendar Extends CI_Controller { |