<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/php/tags/api</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Wed, 22 May 2013 01:47:22 GMT</pubDate>
<item>
<title>(PHP) JSONP Public API with jQuery getJSON (callback) (MySql) - halk</title>
<link>http://snipplr.com/view/68583/jsonp-public-api-with-jquery-getjson-callback-mysql/</link>
<description><![CDATA[ <p>This is a public jsonp api. I use it with jQuery Like This:
$.getJSON("http://yourdomain/yourpath/jsonp_api.php?method=getSchema&amp;params=your_db_name&amp;jsoncallback=?",
        function(data){
         //DO SOMETHING WITH THE DATA HERE
        }
    );</p> ]]></description>
<pubDate>Fri, 16 Nov 2012 09:08:46 GMT</pubDate>
<guid>http://snipplr.com/view/68583/jsonp-public-api-with-jquery-getjson-callback-mysql/</guid>
</item>
<item>
<title>(PHP) PHP API Header For Function Libraray (Call Any PHP Functions Via Ajax) - halk</title>
<link>http://snipplr.com/view/68091/php-api-header-for-function-libraray-call-any-php-functions-via-ajax/</link>
<description><![CDATA[ <p>Place your functions below the header and then call them by posting to the script with any kind of ajax :
$('#test').load('base/ajax/ajax_api.php',{method:'_sha256',params:"'batman','gargamelhatessmurfs'"});
for example.</p> ]]></description>
<pubDate>Mon, 05 Nov 2012 01:05:22 GMT</pubDate>
<guid>http://snipplr.com/view/68091/php-api-header-for-function-libraray-call-any-php-functions-via-ajax/</guid>
</item>
<item>
<title>(PHP) JSON Responder - evinweissenberg</title>
<link>http://snipplr.com/view/66800/json-responder/</link>
<description><![CDATA[ <p>This response in JSON format with an ability to indicate type,code, message and if there is data, with data.</p> ]]></description>
<pubDate>Sat, 18 Aug 2012 07:51:54 GMT</pubDate>
<guid>http://snipplr.com/view/66800/json-responder/</guid>
</item>
<item>
<title>(PHP) REST API products and categories from pinnacleCart - crypticsoft</title>
<link>http://snipplr.com/view/66798/rest-api-products-and-categories-from-pinnaclecart/</link>
<description><![CDATA[ <p>This is a useful class which utilizes Phil Sturgeon's helpful restclient (http://getsparks.org/packages/restclient/versions/HEAD/show). Reference the URL attached for PinnacleCart API docs.

Example request URLs to get products and categories:

# Get product by product_id (XX##) or keyword(s)
~/products/getProducts/search/10/oj70/oj77/oj75

# Recently added products by CategoryID (/cID/batchSize)
~/products/getProductsByCategory/92/10

# Recently added product images by CategoryID (/cID/batchSize) 
-- This was to remove the 'Description' key/value for slide shows
~/products/getProductImagesByCategory/92/10

# Recently added products by limit
~/products/getRecentlyAdded/20

# Get all categories
~/products/getCategories</p> ]]></description>
<pubDate>Sat, 18 Aug 2012 02:50:58 GMT</pubDate>
<guid>http://snipplr.com/view/66798/rest-api-products-and-categories-from-pinnaclecart/</guid>
</item>
<item>
<title>(PHP) Drupal Batch API for hook_update_N() - wizonesolutions</title>
<link>http://snipplr.com/view/62213/drupal-batch-api-for-hookupdaten/</link>
<description><![CDATA[ <p>This is the Batch API example shown on http://api.drupal.org/api/drupal/developer--hooks--install.php/function/hook_update_N/6.</p> ]]></description>
<pubDate>Sun, 01 Jan 2012 15:44:56 GMT</pubDate>
<guid>http://snipplr.com/view/62213/drupal-batch-api-for-hookupdaten/</guid>
</item>
<item>
<title>(PHP) Twitter Followers Image List - jhonqwerty</title>
<link>http://snipplr.com/view/59981/twitter-followers-image-list/</link>
<description><![CDATA[ <p>A simple script to show a followers list in Wordpress. (It can be used in other places also, you have to change the WP specific variables). The script needs to create a cache file to not overload Twitter API.</p> ]]></description>
<pubDate>Thu, 20 Oct 2011 07:26:21 GMT</pubDate>
<guid>http://snipplr.com/view/59981/twitter-followers-image-list/</guid>
</item>
<item>
<title>(PHP) Convert Twitter API Datetime to MySQL Datetime Format - aristoworks</title>
<link>http://snipplr.com/view/59869/convert-twitter-api-datetime-to-mysql-datetime-format/</link>
<description><![CDATA[ <p>This is a very rudimentary function used to convert a Datetime delivered by the Twitter API to a format you can store in MySQL's datetime field.</p> ]]></description>
<pubDate>Mon, 17 Oct 2011 00:51:40 GMT</pubDate>
<guid>http://snipplr.com/view/59869/convert-twitter-api-datetime-to-mysql-datetime-format/</guid>
</item>
<item>
<title>(PHP) Get All information from youtube video - TimoZachi</title>
<link>http://snipplr.com/view/58573/get-all-information-from-youtube-video/</link>
<description><![CDATA[ <p>This code snippet gets all information from a YouTube video (title, description, duration, thumbnail url, thumbnail width, thumbnail height, etc..) using the video id and YouTube API.</p> ]]></description>
<pubDate>Sat, 10 Sep 2011 03:51:42 GMT</pubDate>
<guid>http://snipplr.com/view/58573/get-all-information-from-youtube-video/</guid>
</item>
<item>
<title>(PHP) Request data from apprequest facebook api - serialk89</title>
<link>http://snipplr.com/view/57517/request-data-from-apprequest-facebook-api/</link>
<description><![CDATA[ <p>Rescatamos los datos que pasamos por apprequest .</p> ]]></description>
<pubDate>Tue, 02 Aug 2011 16:56:51 GMT</pubDate>
<guid>http://snipplr.com/view/57517/request-data-from-apprequest-facebook-api/</guid>
</item>
<item>
<title>(PHP) Request data from URL iframe Facebook app - serialk89</title>
<link>http://snipplr.com/view/57508/request-data-from-url-iframe-facebook-app/</link>
<description><![CDATA[ <p>Rescato variables desde un iframe con $signed_request</p> ]]></description>
<pubDate>Tue, 02 Aug 2011 13:06:14 GMT</pubDate>
<guid>http://snipplr.com/view/57508/request-data-from-url-iframe-facebook-app/</guid>
</item>
<item>
<title>(PHP) PHP - MMS Integration Reference URL - SMSGlobal.com - erraja_07</title>
<link>http://snipplr.com/view/57151/php--mms-integration-reference-url--smsglobalcom/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 26 Jul 2011 17:33:34 GMT</pubDate>
<guid>http://snipplr.com/view/57151/php--mms-integration-reference-url--smsglobalcom/</guid>
</item>
<item>
<title>(PHP) Ordenar Alfabéticamente los amigos de facebook en app - serialk89</title>
<link>http://snipplr.com/view/57020/ordenar-alfabticamente-los-amigos-de-facebook-en-app/</link>
<description><![CDATA[ <p>Ordena alfabéticamente el array $friends['data'] obtenido con la api de facebook.</p> ]]></description>
<pubDate>Fri, 22 Jul 2011 07:30:48 GMT</pubDate>
<guid>http://snipplr.com/view/57020/ordenar-alfabticamente-los-amigos-de-facebook-en-app/</guid>
</item>
<item>
<title>(PHP) Save tweets using PHP from the twitter search API to a MySQL database - eddequincey</title>
<link>http://snipplr.com/view/56994/save-tweets-using-php-from-the-twitter-search-api-to-a-mysql-database/</link>
<description><![CDATA[ <p>[Related SQL query to create the storage table](http://snipplr.com/view/56995/sql-query-to-create-a-table-in-mysql-to-store-tweets/ "Related SQL query to create the storage table")</p> ]]></description>
<pubDate>Thu, 21 Jul 2011 23:58:23 GMT</pubDate>
<guid>http://snipplr.com/view/56994/save-tweets-using-php-from-the-twitter-search-api-to-a-mysql-database/</guid>
</item>
<item>
<title>(PHP) How to retrieve facebook user’s friendlist - dubogii</title>
<link>http://snipplr.com/view/54996/how-to-retrieve-facebook-users-friendlist/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 08 Jun 2011 12:22:38 GMT</pubDate>
<guid>http://snipplr.com/view/54996/how-to-retrieve-facebook-users-friendlist/</guid>
</item>
<item>
<title>(PHP) jQuery load latest version in WordPress - nathanbweb</title>
<link>http://snipplr.com/view/53636/jquery-load-latest-version-in-wordpress/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 17 May 2011 05:00:24 GMT</pubDate>
<guid>http://snipplr.com/view/53636/jquery-load-latest-version-in-wordpress/</guid>
</item>
<item>
<title>(PHP) Twitter Feed w/ x-time-ago &amp;amp;  Error Handling - ReverentGhost</title>
<link>http://snipplr.com/view/53105/twitter-feed-w-xtimeago---error-handling/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 05 May 2011 16:43:05 GMT</pubDate>
<guid>http://snipplr.com/view/53105/twitter-feed-w-xtimeago---error-handling/</guid>
</item>
<item>
<title>(PHP) PHP Pay via Paypal (for most Open Source Invoicing Apps) - creativeboulder</title>
<link>http://snipplr.com/view/51881/php-pay-via-paypal-for-most-open-source-invoicing-apps/</link>
<description><![CDATA[ <p>_PHP Snippet for Paying via Paypal_

This snippet is designed for most open source invoicing applications that you have control over the template setup. There multiple free or open source PHP applications that you can download server-side and implement this snippet at the bottom or very top of the template. Work great on *MyClientBase*.</p> ]]></description>
<pubDate>Sun, 10 Apr 2011 05:15:57 GMT</pubDate>
<guid>http://snipplr.com/view/51881/php-pay-via-paypal-for-most-open-source-invoicing-apps/</guid>
</item>
<item>
<title>(PHP) Get Twitter Data using twitter API - kangcom</title>
<link>http://snipplr.com/view/47899/get-twitter-data-using-twitter-api/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 26 Jan 2011 17:25:39 GMT</pubDate>
<guid>http://snipplr.com/view/47899/get-twitter-data-using-twitter-api/</guid>
</item>
<item>
<title>(PHP) pap click tracking api - jurajsim</title>
<link>http://snipplr.com/view/47845/pap-click-tracking-api/</link>
<description><![CDATA[ <p>track click and get aff/campaign info</p> ]]></description>
<pubDate>Tue, 25 Jan 2011 21:52:32 GMT</pubDate>
<guid>http://snipplr.com/view/47845/pap-click-tracking-api/</guid>
</item>
<item>
<title>(PHP) Example Using the Envato API - dtbaker</title>
<link>http://snipplr.com/view/45625/example-using-the-envato-api/</link>
<description><![CDATA[ <p>Script used to access the Envato API, and get extra details using Curl.

This script will only work on PHP5 on a Linux hosting account (with safe mode / openbasedir disabled). Will need slight adjustment if trying to run it otherwise. 

You are welcome to use or modify this script, feel free to share your implementation of it.</p> ]]></description>
<pubDate>Sat, 11 Dec 2010 16:18:27 GMT</pubDate>
<guid>http://snipplr.com/view/45625/example-using-the-envato-api/</guid>
</item>
</channel>
</rss>