<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Getphp : PHP and MySQL resources</title>
	
	<link>http://www.getphp.net</link>
	<description />
	<lastBuildDate>Mon, 07 Jun 2010 08:59:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Getphp" /><feedburner:info uri="getphp" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>View an RSS feed</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/35JKOshXqxw/</link>
		<comments>http://www.getphp.net/view-an-rss-feed/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 08:59:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[rss parser]]></category>

		<guid isPermaLink="false">http://www.getphp.net/view-an-rss-feed/</guid>
		<description>&lt;p&gt;This example shows how to use the downloadable libraries from the book Webbots, Spiders, and Screen Scrapers to view an RSS feed.&lt;/p&gt;
&lt;p&gt;5 lines of code and 3 are the include files&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&amp;#60;?php    REQUIRE_ONCE &amp;#8216;LIB_rss.php&amp;#8217;;     REQUIRE_ONCE &amp;#8216;LIB_http.php&amp;#8217;;     REQUIRE_ONCE &amp;#8216;LIB_parse.php&amp;#8217;;     $rssfeed = download_parse_rss(&amp;#34;http://newsrss.bbc.co.uk/rss/sportonline_world_edition/football/rss.xml&amp;#34;); [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/35JKOshXqxw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/view-an-rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/view-an-rss-feed/</feedburner:origLink></item>
		<item>
		<title>Make a directory</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/P7TsRNbVwQA/</link>
		<comments>http://www.getphp.net/make-a-directory/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 16:50:03 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[File]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=730</guid>
		<description>&lt;p&gt;&amp;#60;?php
mkdir (&amp;#8220;/htdocs/testdir&amp;#8221;, 0644);
echo &amp;#8220;Test directory made successfully&amp;#8221;;
?&amp;#62;&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;
&lt;p&gt;Related posts brought to you by Yet Another Related Posts Plugin.&lt;/p&gt;


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/P7TsRNbVwQA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/make-a-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/make-a-directory/</feedburner:origLink></item>
		<item>
		<title>Check a url exists</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/GML8Q2MieWI/</link>
		<comments>http://www.getphp.net/check-a-url-exists/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 16:37:32 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[Functions]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=728</guid>
		<description>&lt;p&gt;
function url_exists($url)
{
$ch = curl_init($url);&lt;/p&gt;
&lt;p&gt;curl_setopt($ch,CURLOPT_HEADER,true);
curl_setopt($ch,CURLOPT_POST,false);
curl_setopt($ch,CURLOPT_FAILONERROR,true);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_exec($ch);
$curlInfo = curl_getinfo($ch, CURLINFO_HTTP_CODE);&lt;/p&gt;
&lt;p&gt;curl_close ($ch);&lt;/p&gt;
&lt;p&gt;if ($curlInfo != 200 &amp;#38;&amp;#38; $curlInfo != 302 &amp;#38;&amp;#38; $curlInfo != 304)
{
return false;
}
else
{
return true ;
}
}&lt;/p&gt;


&lt;p&gt;Related posts:Is.gd short url this example shows how to get a short url using...
&lt;/p&gt;
&lt;p&gt;Related posts brought to you by Yet Another Related Posts Plugin.&lt;/p&gt;


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.getphp.net/isgd-short-url/' rel='bookmark' title='Permanent Link: Is.gd short url'&gt;Is.gd short url&lt;/a&gt; &lt;small&gt;this example shows how to get a short url using...&lt;/small&gt;&lt;/li&gt;
&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/GML8Q2MieWI" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/check-a-url-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/check-a-url-exists/</feedburner:origLink></item>
		<item>
		<title>get the season with php</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/xzkHt5sDqCY/</link>
		<comments>http://www.getphp.net/get-the-season-with-php/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 14:18:21 +0000</pubDate>
		<dc:creator>php_programmer</dc:creator>
				<category><![CDATA[Date/Time]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=725</guid>
		<description>&lt;p&gt;//get current month
$currentMonth=date(&amp;#8220;m&amp;#8221;);&lt;/p&gt;
&lt;p&gt;//work out the season
if ($currentMonth&amp;#62;=&amp;#8221;03&amp;#8243; &amp;#38;&amp;#38; $currentMonth&amp;#60;=&amp;#8221;05&amp;#8243;)
$season = &amp;#8220;spring&amp;#8221;;
elseif ($currentMonth&amp;#62;=&amp;#8221;06&amp;#8243; &amp;#38;&amp;#38; $currentMonth&amp;#60;=&amp;#8221;08&amp;#8243;)
$season = &amp;#8220;summer&amp;#8221;;
elseif ($currentMonth&amp;#62;=&amp;#8221;09&amp;#8243; &amp;#38;&amp;#38; $currentMonth&amp;#60;=&amp;#8221;11&amp;#8243;)
$season = &amp;#8220;autumn&amp;#8221;;
else
$season = &amp;#8220;winter&amp;#8221;;&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;
&lt;p&gt;Related posts brought to you by Yet Another Related Posts Plugin.&lt;/p&gt;


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/xzkHt5sDqCY" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/get-the-season-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/get-the-season-with-php/</feedburner:origLink></item>
		<item>
		<title>Is.gd short url</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/vv1iCzHCSxo/</link>
		<comments>http://www.getphp.net/isgd-short-url/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 08:04:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[is.gd]]></category>
		<category><![CDATA[short url]]></category>

		<guid isPermaLink="false">http://www.getphp.net/isgd-short-url/</guid>
		<description>&lt;p&gt;this example shows how to get a short url using the service from is.gd&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&amp;#60;?php    /*     Get a is.gd short url using PHP     */     function isgd($url)&amp;#160; {&amp;#160; &amp;#160;&amp;#160;&amp;#160; $ch = curl_init();&amp;#160; &amp;#160;&amp;#160;&amp;#160; $timeout = 5;&amp;#160; &amp;#160;&amp;#160;&amp;#160; curl_setopt($ch,CURLOPT_URL,&amp;#8217;http://is.gd/api.php?longurl=&amp;#8217;.$url);&amp;#160; &amp;#160;&amp;#160;&amp;#160; curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);&amp;#160; &amp;#160;&amp;#160;&amp;#160; curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);&amp;#160; [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.getphp.net/check-a-url-exists/' rel='bookmark' title='Permanent Link: Check a url exists'&gt;Check a url exists&lt;/a&gt; &lt;small&gt; function url_exists($url) { $ch = curl_init($url); curl_setopt($ch,CURLOPT_HEADER,true); curl_setopt($ch,CURLOPT_POST,false); curl_setopt($ch,CURLOPT_FAILONERROR,true);...&lt;/small&gt;&lt;/li&gt;
&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/vv1iCzHCSxo" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/isgd-short-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/isgd-short-url/</feedburner:origLink></item>
		<item>
		<title>IPhone detection</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/wQ0f07-HImY/</link>
		<comments>http://www.getphp.net/iphone-detection/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 21:33:32 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[IPhone detection]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=713</guid>
		<description>&lt;p&gt;if (stristr($_SERVER['HTTP_USER_AGENT'], &amp;#8216;iPhone&amp;#8217;))
{
	// redirect to an iphone version
}&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;
&lt;p&gt;Related posts brought to you by Yet Another Related Posts Plugin.&lt;/p&gt;


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/wQ0f07-HImY" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/iphone-detection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/iphone-detection/</feedburner:origLink></item>
		<item>
		<title>Match an email address</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/dLN6CztbLZ0/</link>
		<comments>http://www.getphp.net/match-an-email-address/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:18:03 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[Regular Expressions]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=710</guid>
		<description>&lt;p&gt;$match = &amp;#8216;/^[^0-9][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[@][a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/&amp;#8217;;&lt;/p&gt;
&lt;p&gt;preg_match($match, $email);&lt;/p&gt;


&lt;p&gt;No related posts.&lt;/p&gt;
&lt;p&gt;Related posts brought to you by Yet Another Related Posts Plugin.&lt;/p&gt;


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/dLN6CztbLZ0" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/match-an-email-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/match-an-email-address/</feedburner:origLink></item>
		<item>
		<title>Shortcode example</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/fjkak356qOM/</link>
		<comments>http://www.getphp.net/shortcode-example/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:13:49 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Shortcode example]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=708</guid>
		<description>&amp;#60;?php function my_example()
{
return 'hello world shortcode example';
// or echo
}
?&amp;#62;
&amp;#60;?php add_shortcode('mytest', 'my_example');?&amp;#62;

Then add [mytest] to the post.


&lt;p&gt;No related posts.&lt;/p&gt;
&lt;p&gt;Related posts brought to you by Yet Another Related Posts Plugin.&lt;/p&gt;


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/fjkak356qOM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/shortcode-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/shortcode-example/</feedburner:origLink></item>
		<item>
		<title>Manual Installation Tutorial for PHP 5 on IIS 5.1 (Windows XP  Pro)</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/ej20VcQBZoQ/</link>
		<comments>http://www.getphp.net/manual-installation-tutorial-for-php-5-on-iis-51-windows-xp-pro/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:11:19 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=697</guid>
		<description>Before we begin any installation steps, the first thing we will need to do is download the PHP zip file from PHP. The version available at the time of this publishing is 5.1.4.  The first step is to extract all of the files from the downloaded zip file into C:PHP (create the folder if it doesnt already exist). You may choose a different location, although it is not [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/ej20VcQBZoQ" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/manual-installation-tutorial-for-php-5-on-iis-51-windows-xp-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/manual-installation-tutorial-for-php-5-on-iis-51-windows-xp-pro/</feedburner:origLink></item>
		<item>
		<title>PHP Interview Questions, Answers, and Explanations: PHP Certification Review: PHP FAQ</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/DG0-yP7vHfY/</link>
		<comments>http://www.getphp.net/php-interview-questions-answers-and-explanations-php-certification-review-php-faq/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 00:00:03 +0000</pubDate>
		<dc:creator>php_programmer</dc:creator>
				<category><![CDATA[US Book]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP Certification]]></category>
		<category><![CDATA[PHP FAQ]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=684</guid>
		<description>&lt;p&gt;
PHP Interview Questions, Answers, and Explanations: PHP Certification Review: PHP FAQ
Price: $58.46
PHP is a must-know for any programmer who wants to stay competitive in today&amp;#8217;&amp;#8217;s oversaturated market.&lt;/p&gt;
&lt;p&gt;This reference is organized around application to both the production of dynamic Web pages and server-side application software.&lt;/p&gt;
&lt;p&gt;More than 150 certification-type questions and answers are provided. (Computer Books)&lt;/p&gt;
&lt;p&gt;PHP Interview [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.getphp.net/benefits-of-php-programming/' rel='bookmark' title='Permanent Link: Benefits of PHP Programming'&gt;Benefits of PHP Programming&lt;/a&gt; &lt;small&gt;PHP (Hypertext Pre-Processor) language is recognized as one of the...&lt;/small&gt;&lt;/li&gt;
&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/DG0-yP7vHfY" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/php-interview-questions-answers-and-explanations-php-certification-review-php-faq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/php-interview-questions-answers-and-explanations-php-certification-review-php-faq/</feedburner:origLink></item>
		<item>
		<title>Benefits of PHP Programming</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/0mO43NXq7qY/</link>
		<comments>http://www.getphp.net/benefits-of-php-programming/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:54:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=679</guid>
		<description>PHP (Hypertext Pre-Processor) language is recognized as one of the fastest growing web programming languages on the web industry as well as on the software development today. PHP has the strong  execution utility coupled with its understandable coding syntax, thus it becomes the excellent choice for software developers to deliver rapid application development [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/0mO43NXq7qY" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/benefits-of-php-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/benefits-of-php-programming/</feedburner:origLink></item>
		<item>
		<title>Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon, Fedex Plus Web Feeds</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/UwANw3pyV2Q/</link>
		<comments>http://www.getphp.net/professional-web-apis-with-php-ebay-google-paypal-amazon-fedex-plus-web-feeds/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 22:41:19 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[US Book]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=680</guid>
		<description>&lt;p&gt;
Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon, Fedex Plus Web Feeds
Price: $23.75
Offers hands-on tips and numerous code examples that show Web developers how to leverage content and feeds from today&amp;#8217;s top Web sites-including Google, eBay, PayPal, Amazon, Yahoo!, and FedEx Introduces APIs (Application Program Interfaces) in general and uses real-world examples that show [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/UwANw3pyV2Q" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/professional-web-apis-with-php-ebay-google-paypal-amazon-fedex-plus-web-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/professional-web-apis-with-php-ebay-google-paypal-amazon-fedex-plus-web-feeds/</feedburner:origLink></item>
		<item>
		<title>Use a specific font</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/nO0ZAVuvVJM/</link>
		<comments>http://www.getphp.net/use-a-specific-font/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 11:36:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Image]]></category>
		<category><![CDATA[ImageColorAllocate]]></category>
		<category><![CDATA[ImageCreate]]></category>
		<category><![CDATA[ImageGif]]></category>
		<category><![CDATA[imageTTFtext]]></category>

		<guid isPermaLink="false">http://www.getphp.net/use-a-specific-font/</guid>
		<description>&lt;p&gt; This example shows how to use a specific font.&lt;/p&gt;
&lt;p&gt;     &amp;#60;?php       header(&amp;#34;Content-type: image/gif&amp;#34;);       $image = imagecreate( 500, 250 );       $blue = imagecolorallocate($image, 0,0,255 );       $font = &amp;#34;ARIALBD.TTF&amp;#34;; [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/nO0ZAVuvVJM" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/use-a-specific-font/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/use-a-specific-font/</feedburner:origLink></item>
		<item>
		<title>What version of PHP</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/cL-IKElLq_s/</link>
		<comments>http://www.getphp.net/what-version-of-php/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 13:55:28 +0000</pubDate>
		<dc:creator>devphp</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[php version number]]></category>
		<category><![CDATA[phpversion]]></category>

		<guid isPermaLink="false">http://www.getphp.net/?p=672</guid>
		<description>&lt;p&gt;I was asked how to get the version of PHP , this was due to the minimum requirements of a script stating PHP 5 and  a user wanted to know how he could check what his host supplied.&lt;/p&gt;
&lt;p&gt;This is the simplest version, save as version.php, upload and  then open it in your web browser.&lt;/p&gt;
&lt;p&gt;&amp;#60;?php
echo phpversion();
?&amp;#62;&lt;/p&gt;
&lt;p&gt;On [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.getphp.net/manual-installation-tutorial-for-php-5-on-iis-51-windows-xp-pro/' rel='bookmark' title='Permanent Link: Manual Installation Tutorial for PHP 5 on IIS 5.1 (Windows XP  Pro)'&gt;Manual Installation Tutorial for PHP 5 on IIS 5.1 (Windows XP  Pro)&lt;/a&gt; &lt;small&gt;Before we begin any installation steps, the first thing we...&lt;/small&gt;&lt;/li&gt;
&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/cL-IKElLq_s" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/what-version-of-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/what-version-of-php/</feedburner:origLink></item>
		<item>
		<title>PHP and MySQL Everyday Applications for Dummies (Paperback)</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/OH8ud9c229g/</link>
		<comments>http://www.getphp.net/php-and-mysql-everyday-applications-for-dummies-paperback/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 14:58:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[UK books]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Dummies]]></category>
		<category><![CDATA[Everyday]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Paperback]]></category>

		<guid isPermaLink="false">http://www.getphp.net/php-and-mysql-everyday-applications-for-dummies-paperback/</guid>
		<description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;      PHP and MySQL Everyday Apps For Dummies is a one–stop reference providing all you need to build dynamic, real–world, ready–to–use apps with the popular PHP (a scripting language) and MySQL (a database system) software. The book is a hands–on, go–to–guide that     Walks you through installing [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.getphp.net/benefits-of-php-programming/' rel='bookmark' title='Permanent Link: Benefits of PHP Programming'&gt;Benefits of PHP Programming&lt;/a&gt; &lt;small&gt;PHP (Hypertext Pre-Processor) language is recognized as one of the...&lt;/small&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href='http://www.getphp.net/professional-web-apis-with-php-ebay-google-paypal-amazon-fedex-plus-web-feeds/' rel='bookmark' title='Permanent Link: Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon, Fedex Plus Web Feeds'&gt;Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon, Fedex Plus Web Feeds&lt;/a&gt; &lt;small&gt; Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon,...&lt;/small&gt;&lt;/li&gt;
&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/OH8ud9c229g" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/php-and-mysql-everyday-applications-for-dummies-paperback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/php-and-mysql-everyday-applications-for-dummies-paperback/</feedburner:origLink></item>
		<item>
		<title>PHP for the Web (Visual QuickStart Guides) (Paperback)</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/5DG7Khw3vdw/</link>
		<comments>http://www.getphp.net/php-for-the-web-visual-quickstart-guides-paperback/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 23:19:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[UK books]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[QuickStart]]></category>
		<category><![CDATA[Visual]]></category>

		<guid isPermaLink="false">http://www.getphp.net/php-for-the-web-visual-quickstart-guides-paperback/</guid>
		<description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;  With PHP for the World Wide Web, Third Edition: Visual QuickStart Guide, readers can start from the beginning to get a tour of the programming language, or look up specific tasks to learn just what they need to know. This task-based visual reference guide uses step-by-step instructions and plenty of screenshots to teach [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/5DG7Khw3vdw" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/php-for-the-web-visual-quickstart-guides-paperback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/php-for-the-web-visual-quickstart-guides-paperback/</feedburner:origLink></item>
		<item>
		<title>Pro PHP: Patterns, Frameworks, Testing &amp; More: Patterns, Frameworks, Testing and More (Paperback)</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/SeFLFxOtU4g/</link>
		<comments>http://www.getphp.net/pro-php-patterns-frameworks-testing-more-patterns-frameworks-testing-and-more-paperback/#comments</comments>
		<pubDate>Sat, 18 Jul 2009 15:55:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[UK books]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[more]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Testing]]></category>

		<guid isPermaLink="false">http://www.getphp.net/pro-php-patterns-frameworks-testing-more-patterns-frameworks-testing-and-more-paperback/</guid>
		<description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;  Taking care to focus solely on those topics that will have the most impact on experienced PHP developers, Pro PHP is written for readers seeking to take their understanding of both PHP and sound software development practices to the next level. Advanced objectoriented features, documentation, debugging, software patterns, and the Standard PHP Library [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/SeFLFxOtU4g" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/pro-php-patterns-frameworks-testing-more-patterns-frameworks-testing-and-more-paperback/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.getphp.net/pro-php-patterns-frameworks-testing-more-patterns-frameworks-testing-and-more-paperback/</feedburner:origLink></item>
		<item>
		<title>PHP and MySQL Web Development (Developer’s Library) (Paperback)</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/sXCpBHAMR90/</link>
		<comments>http://www.getphp.net/php-and-mysql-web-development-developers-library-paperback/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 22:41:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[UK books]]></category>
		<category><![CDATA[Developer's]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Library]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Paperback]]></category>

		<guid isPermaLink="false">http://www.getphp.net/php-and-mysql-web-development-developers-library-paperback/</guid>
		<description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;      Amazon.co.uk ReviewPHP and MySQL Web Development introduces readers (who are assumed to have little or no experience with the title subjects) to PHP and MySQL for the purpose of creating dynamic Internet sites. It teaches the same skills as introductory Active Server Pages (ASP) and ColdFusion books&amp;#8211;technologies which address [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.getphp.net/professional-web-apis-with-php-ebay-google-paypal-amazon-fedex-plus-web-feeds/' rel='bookmark' title='Permanent Link: Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon, Fedex Plus Web Feeds'&gt;Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon, Fedex Plus Web Feeds&lt;/a&gt; &lt;small&gt; Professional Web APIs with PHP: Ebay, Google, Paypal, Amazon,...&lt;/small&gt;&lt;/li&gt;
&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/sXCpBHAMR90" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/php-and-mysql-web-development-developers-library-paperback/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://www.getphp.net/php-and-mysql-web-development-developers-library-paperback/</feedburner:origLink></item>
		<item>
		<title>PHP and MySQL for Dummies (Paperback)</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/mNZdI826K9c/</link>
		<comments>http://www.getphp.net/php-and-mysql-for-dummies-paperback/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 17:40:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[UK books]]></category>
		<category><![CDATA[Dummies]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Paperback]]></category>

		<guid isPermaLink="false">http://www.getphp.net/php-and-mysql-for-dummies-paperback/</guid>
		<description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;  Build an online catalog and a members–only site  Everything you need to know to create a dynamic PHP and MySQL Web site!  Been thinking of creating a high–quality interactive Web site? This book is just what you need to get started! Here′s the fun and easy way(r) to develop a Web [...]


No related posts.

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/mNZdI826K9c" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/php-and-mysql-for-dummies-paperback/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.getphp.net/php-and-mysql-for-dummies-paperback/</feedburner:origLink></item>
		<item>
		<title>PHP and MySQL Web Development All-in-one Desk Reference for Dummies (Paperback)</title>
		<link>http://feedproxy.google.com/~r/Getphp/~3/PhlXWo0VgmY/</link>
		<comments>http://www.getphp.net/php-and-mysql-web-development-all-in-one-desk-reference-for-dummies-paperback/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 10:25:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[UK books]]></category>
		<category><![CDATA[Allinone]]></category>
		<category><![CDATA[Desk]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Dummies]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Paperback]]></category>
		<category><![CDATA[Reference]]></category>

		<guid isPermaLink="false">http://www.getphp.net/php-and-mysql-web-development-all-in-one-desk-reference-for-dummies-paperback/</guid>
		<description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;  If you want to build dynamic Web sites that encourage users to interact with them, PHP and MySQL are among the best tools you’ll find. PHP is a scripting language designed specifically for use on the Web, while MySQL is a database management system that works with it perfectly. Best of all, they’re [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.getphp.net/benefits-of-php-programming/' rel='bookmark' title='Permanent Link: Benefits of PHP Programming'&gt;Benefits of PHP Programming&lt;/a&gt; &lt;small&gt;PHP (Hypertext Pre-Processor) language is recognized as one of the...&lt;/small&gt;&lt;/li&gt;
&lt;/ol&gt;

Related posts brought to you by &lt;a href='http://mitcho.com/code/yarpp/'&gt;Yet Another Related Posts Plugin&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/Getphp/~4/PhlXWo0VgmY" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.getphp.net/php-and-mysql-web-development-all-in-one-desk-reference-for-dummies-paperback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.getphp.net/php-and-mysql-web-development-all-in-one-desk-reference-for-dummies-paperback/</feedburner:origLink></item>
	</channel>
</rss>
