<?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/tags/get</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Mon, 13 Feb 2012 15:49:23 GMT</pubDate>
<item>
<title>(jQuery) Get value of selected option in Drop Down - jjmu15</title>
<link>http://snipplr.com/view/63250/get-value-of-selected-option-in-drop-down/</link>
<description><![CDATA[ <p>This snippet gets the value of the selected dropdown</p> ]]></description>
<pubDate>Sat, 11 Feb 2012 03:05:35 GMT</pubDate>
<guid>http://snipplr.com/view/63250/get-value-of-selected-option-in-drop-down/</guid>
</item>
<item>
<title>(JavaScript) get GET and POST variables in javascript - FatFolderDesigner</title>
<link>http://snipplr.com/view/62892/get-get-and-post-variables-in-javascript/</link>
<description><![CDATA[ <p>Usually when working with form you use a server to handle it, and if your doing it entirely in javascript no reload is required, but what if you wanted to take the information and use it in a javascript on another page, completely client side. I had that problem, and found this solution.

First is how to get GET variables in javascript, it works by breaking down the URL location with a regular expression giving you a variable that behaves like the PHP $_GET variable.

Second is for POST variables and, unfortunately requires a server side script to work since javascript has no way to acces the POSt on it's own. The code below is for PHP, but should work for any language, it is also untested as I was really aiming for GET at the time.

And questions, comments, or concerns let me know here or at the link, you'll find a bit more information this there as well.</p> ]]></description>
<pubDate>Mon, 30 Jan 2012 09:43:54 GMT</pubDate>
<guid>http://snipplr.com/view/62892/get-get-and-post-variables-in-javascript/</guid>
</item>
<item>
<title>(PHP) Show list of Child pages and Featured Image on Current Page - i-am-andy</title>
<link>http://snipplr.com/view/62419/show-list-of-child-pages-and-featured-image-on-current-page/</link>
<description><![CDATA[ <p>Show all child pages content and featured image on the parent page</p> ]]></description>
<pubDate>Mon, 09 Jan 2012 21:40:40 GMT</pubDate>
<guid>http://snipplr.com/view/62419/show-list-of-child-pages-and-featured-image-on-current-page/</guid>
</item>
<item>
<title>(PHP) Display recent Twitter tweets using PHP - i-am-andy</title>
<link>http://snipplr.com/view/61700/display-recent-twitter-tweets-using-php/</link>
<description><![CDATA[ <p>If you’ve ever wanted to display your latest Twitter tweets on a website, here is method to do that using PHP.</p> ]]></description>
<pubDate>Tue, 06 Dec 2011 20:12:54 GMT</pubDate>
<guid>http://snipplr.com/view/61700/display-recent-twitter-tweets-using-php/</guid>
</item>
<item>
<title>(PHP) PHP Microtime - okhy</title>
<link>http://snipplr.com/view/61024/php-microtime/</link>
<description><![CDATA[ <p>This function will give you something like milliseconds in Javascript, like: new Date().getTime();</p> ]]></description>
<pubDate>Mon, 21 Nov 2011 15:17:40 GMT</pubDate>
<guid>http://snipplr.com/view/61024/php-microtime/</guid>
</item>
<item>
<title>(JavaScript) Use variables passed in the URL in Javascript/jQuery - sicbot</title>
<link>http://snipplr.com/view/60526/use-variables-passed-in-the-url-in-javascriptjquery/</link>
<description><![CDATA[ <p>(I did not write this, but I forgot where I got it.)

This code will find all the variables passed though the URL and return the one you are looking for.</p> ]]></description>
<pubDate>Fri, 04 Nov 2011 02:38:39 GMT</pubDate>
<guid>http://snipplr.com/view/60526/use-variables-passed-in-the-url-in-javascriptjquery/</guid>
</item>
<item>
<title>(JavaScript) Ifram get parent - Alexintosh</title>
<link>http://snipplr.com/view/60286/ifram-get-parent/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 28 Oct 2011 02:29:50 GMT</pubDate>
<guid>http://snipplr.com/view/60286/ifram-get-parent/</guid>
</item>
<item>
<title>(JavaScript) Ifram get parent - Alexintosh</title>
<link>http://snipplr.com/view/60285/ifram-get-parent/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 28 Oct 2011 02:25:09 GMT</pubDate>
<guid>http://snipplr.com/view/60285/ifram-get-parent/</guid>
</item>
<item>
<title>(PHP) Table populated dinamically without using ADODB php library code - alberomo</title>
<link>http://snipplr.com/view/59476/table-populated-dinamically-without-using-adodb-php-library-code/</link>
<description><![CDATA[ <p>It uses a variable with a RecordSet. db_query PHP Functions can be used to have the REcordSet(http://snipplr.com/view/59419/php-connexion-to-mysql-ddbb-sql-query-and-creation-of-a-record-set/).

Then fill the tables with the data of the RecordSet.</p> ]]></description>
<pubDate>Thu, 06 Oct 2011 08:05:57 GMT</pubDate>
<guid>http://snipplr.com/view/59476/table-populated-dinamically-without-using-adodb-php-library-code/</guid>
</item>
<item>
<title>(PHP) PHP Connexion to Mysql DDBB, SQL query and creation of a Record Set. - alberomo</title>
<link>http://snipplr.com/view/59419/php-connexion-to-mysql-ddbb-sql-query-and-creation-of-a-record-set/</link>
<description><![CDATA[ <p>PHP code for connect to MySql, create a SQL query and a Record Set from it.

Note: If you use ADODB php library, write db_query() instead of mysql_query().</p> ]]></description>
<pubDate>Wed, 05 Oct 2011 03:37:14 GMT</pubDate>
<guid>http://snipplr.com/view/59419/php-connexion-to-mysql-ddbb-sql-query-and-creation-of-a-record-set/</guid>
</item>
<item>
<title>(PHP) Table populated dinamically using ADODB php library code - alberomo</title>
<link>http://snipplr.com/view/59386/table-populated-dinamically-using-adodb-php-library-code/</link>
<description><![CDATA[ <p>It uses a variable with a RecordSet from a ADOdb Library (Library must be downloaded). db_query PHP Functions can be used to have the REcordSet(http://snipplr.com/view/59379/dbquery-php-function-for-ddbb-queries-with-adodb-library/)

Then uses ADODB php library functions and properties for fill the tables with the data of the RecordSet.</p> ]]></description>
<pubDate>Tue, 04 Oct 2011 06:13:11 GMT</pubDate>
<guid>http://snipplr.com/view/59386/table-populated-dinamically-using-adodb-php-library-code/</guid>
</item>
<item>
<title>(PHP) db_query PHP function for ddbb queries with ADOdb Library (INSERT queries) - alberomo</title>
<link>http://snipplr.com/view/59381/dbquery-php-function-for-ddbb-queries-with-adodb-library-insert-queries/</link>
<description><![CDATA[ <p>A PHP function to get a Record Set using ADOdb Library.

It takes the (SQL) query as an argument. For INSERT queries. NOTE: A call for a query.

It also need next variables: $dbhost,$dbuser,$dbpasswd,$dbname (data from de bbdd connexion). Can be declared in the document itself.

It returns the Record Set.

It needs the ADOdb Library for php.</p> ]]></description>
<pubDate>Tue, 04 Oct 2011 04:52:56 GMT</pubDate>
<guid>http://snipplr.com/view/59381/dbquery-php-function-for-ddbb-queries-with-adodb-library-insert-queries/</guid>
</item>
<item>
<title>(PHP) db_query PHP function for ddbb queries with ADOdb Library - alberomo</title>
<link>http://snipplr.com/view/59379/dbquery-php-function-for-ddbb-queries-with-adodb-library/</link>
<description><![CDATA[ <p>A PHP function to get a Record Set using ADOdb Library.

It takes the (SQL) query as an argument.  For SELECT,UPDATE and DELETE queries.

It also need next variables: $db_host,$db_user,$db_passwd,$db_name (data from de bbdd connexion). Can be declared in the document itself.

It returns the Record Set. 

It needs the ADOdb Library for php.</p> ]]></description>
<pubDate>Tue, 04 Oct 2011 04:34:36 GMT</pubDate>
<guid>http://snipplr.com/view/59379/dbquery-php-function-for-ddbb-queries-with-adodb-library/</guid>
</item>
<item>
<title>(PHP) getVars Function for PHP. - alberomo</title>
<link>http://snipplr.com/view/59322/getvars-function-for-php/</link>
<description><![CDATA[ <p>Transform $_GET or $_POST in a string to add to an URL and send variables and values.
Argument: Receive an $_GET O $_POST array function.
Returns: variables concatenation to add to the URL.</p> ]]></description>
<pubDate>Sat, 01 Oct 2011 21:34:07 GMT</pubDate>
<guid>http://snipplr.com/view/59322/getvars-function-for-php/</guid>
</item>
<item>
<title>(JavaScript) Get Query String Args  Javascript - brownrl</title>
<link>http://snipplr.com/view/59019/get-query-string-args--javascript/</link>
<description><![CDATA[ <p>This will get the arguments on the query string and put them into a handy array.</p> ]]></description>
<pubDate>Fri, 23 Sep 2011 17:33:12 GMT</pubDate>
<guid>http://snipplr.com/view/59019/get-query-string-args--javascript/</guid>
</item>
<item>
<title>(PHP) Calculate Age using PHP (mounth-day-year to age) - i0ni</title>
<link>http://snipplr.com/view/58370/calculate-age-using-php-mounthdayyear-to-age/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 01 Sep 2011 17:58:55 GMT</pubDate>
<guid>http://snipplr.com/view/58370/calculate-age-using-php-mounthdayyear-to-age/</guid>
</item>
<item>
<title>(PHP) Get Posts from Custom Post Type - i-am-andy</title>
<link>http://snipplr.com/view/58108/get-posts-from-custom-post-type/</link>
<description><![CDATA[ <p>Get posts from a Custom Post Type</p> ]]></description>
<pubDate>Tue, 23 Aug 2011 22:22:10 GMT</pubDate>
<guid>http://snipplr.com/view/58108/get-posts-from-custom-post-type/</guid>
</item>
<item>
<title>(jQuery) jQuery Ajax Get - kyabas</title>
<link>http://snipplr.com/view/57336/jquery-ajax-get/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 29 Jul 2011 19:36:01 GMT</pubDate>
<guid>http://snipplr.com/view/57336/jquery-ajax-get/</guid>
</item>
<item>
<title>(PHP) Magento Create New Module - Controller Dispatch - necode</title>
<link>http://snipplr.com/view/57057/magento-create-new-module--controller-dispatch/</link>
<description><![CDATA[ <p>Create a Hello World module in the Magento system
Configure this module with routes
Create Action Controller(s) for our routes</p> ]]></description>
<pubDate>Sat, 23 Jul 2011 02:15:16 GMT</pubDate>
<guid>http://snipplr.com/view/57057/magento-create-new-module--controller-dispatch/</guid>
</item>
<item>
<title>(ActionScript 3) AS3 Loading and Accessing fonts in external SWF at Runtime - adrianparr</title>
<link>http://snipplr.com/view/56917/as3-loading-and-accessing-fonts-in-external-swf-at-runtime/</link>
<description><![CDATA[ <p>These two classes demonstrate how to create an external font SWF that contains embedded fonts, and how to then load that external font SWF and access and use the fonts inside it.</p> ]]></description>
<pubDate>Wed, 20 Jul 2011 21:01:41 GMT</pubDate>
<guid>http://snipplr.com/view/56917/as3-loading-and-accessing-fonts-in-external-swf-at-runtime/</guid>
</item>
</channel>
</rss>
