Calendar
September 2010 M T W T F S S « May 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 -
Latest Wiki.
- fetch the records through ajax and jquery in json format using kohana
- Set user as idle in PHP using jquery
- What is XML-RPC?
- Empty image src can destroy your site
- High Performance Ajax Applications
- Performance Research, Part 3: When the Cookie Crumbles
- Best Practices for Speeding Up Your Web Site
- 15+ Tips to Speed Up Your Website, and Optimize Your Code!
- How to manage languages in kohana
- Define variable in Kohana using Config File
-
What people said about wiki?
- Joaquim Homrighausen on fetch the records through ajax and jquery in json format using kohana
- Milan Thakur on fetch the records through ajax and jquery in json format using kohana
- Aswini on 15+ Tips to Speed Up Your Website, and Optimize Your Code!
- Raj on fetch the records through ajax and jquery in json format using kohana
- Blogs on 100 Popular jQuery Examples, Plugins and Tutorials
PHP Code Archive
-
fetch the records through ajax and jquery in json format using kohana
Posted on May 14, 2010 | 4 CommentsHI All, After spending lot’s of time, i got result in josn format in kohana. I want to fetch all records of last 3 minutes of comment table and it will display on my site after check is record already show on browser or not. As... -
Define variable in Kohana using Config File
Posted on March 17, 2010 | No CommentsHow to make the global variable in Kohana – To get the value of the variable which is used globally into the website. For it you have to set the variable in config file of Kohana. For it, you have to open the file - Kohana ->... -
Read RSS feed XML using CURL in PHP
Posted on March 17, 2010 | No Comments// create a new cURL resource $ch = curl_init(); $url = “http://witslog.com/wiki/?feed=rss2″; // set URL and other appropriate options curl_setopt($ch, CURLOPT_URL, $url); // you have to set the url of the website of which you want to get the rss data curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, 0); // grab URL and pass... -
Create a Basic Web Service Using PHP, MySQL, XML, and JSON
Posted on March 17, 2010 | No CommentsWeb services are taking over the world. I credit Twitter’s epic rise to the availability of a simple but rich API. Why not use the same model for your own sites? Here’s how to create a basic web service that...