<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>PHP Programming Tips</title>
	<atom:link href="http://phpprogrammingtips.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://phpprogrammingtips.net</link>
	<description></description>
	<lastBuildDate>Wed, 10 Mar 2010 14:38:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Embedding Comments</title>
		<link>http://phpprogrammingtips.net/basic-programming/embedding-comments/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/embedding-comments/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 14:38:06 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[Basic PHP]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Sample]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/uncategorized/embedding-comments/</guid>
		<description><![CDATA[
Now, to make you a better programmer we all know the value of comments. This allows you to understand the code that you have written defining and given meaning to operations as you build them up. You start with the terminators used by PHP and end with them as well. Single line comments look like [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.digitalalchemy.tv/2007/06/watch-ted-talks-technology.html"><img src="/wp-content/uploads/scraped/13.jpg"/></a>
<p>Now, to make you a better programmer we all know the value of comments. This allows you to understand the code that you have written defining and given meaning to operations as you build them up. You start with the terminators used by PHP and end with them as well. Single line comments look like this ï¿½// commentï¿½ and Multi-line ones use the syntax /* comment comment*/. A better example would be the one below:</p>
<p><?php<br />
//comment<br />
/* comment<br />
Comment*/<br />
?></p>
<p>In the next post we take on the best parts of PHP which would be variables which is essential in all programming languages.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/embedding-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More into the syntax of PHP</title>
		<link>http://phpprogrammingtips.net/basic-programming/more-into-the-syntax-of-php/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/more-into-the-syntax-of-php/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 14:36:07 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[PHP Syntax]]></category>
		<category><![CDATA[Program]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/uncategorized/more-into-the-syntax-of-php/</guid>
		<description><![CDATA[
As you might have seen, all of the PHP statement ends with ï¿½;ï¿½ which would be somewhat similar to Perl. The valid HTML code that was handed back to the server was :



Who are You?

My name is MacGyver.


More in the coming posts when we dig deeper as we widen our understanding of PHP.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://%25E2%259C%258E.net/category/php/"><img src="/wp-content/uploads/scraped/12.jpg"/></a>
<p>As you might have seen, all of the PHP statement ends with ï¿½;ï¿½ which would be somewhat similar to Perl. The valid HTML code that was handed back to the server was :<br />
<html><br />
<head></head><br />
<body><br />
Who are You?<br />
<br />
My name is MacGyver.<br />
</body><br />
</html></p>
<p>More in the coming posts when we dig deeper as we widen our understanding of PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/more-into-the-syntax-of-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Basics</title>
		<link>http://phpprogrammingtips.net/basic-programming/php-basics/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/php-basics/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 14:33:54 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[PHP Syntax]]></category>
		<category><![CDATA[Program Basics]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/uncategorized/php-basics/</guid>
		<description><![CDATA[
Now that you have installed the necessary web server software and tested that it works (which is included in the manual) we can now get to know the basics of PHP.  For our guide we will be using HTTP combined with PHP, this allows PHP code to be embedded into regular html pages and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamincode.net/forums/showtopic35660.htm"><img src="/wp-content/uploads/scraped/10.jpg"/></a>
<p>Now that you have installed the necessary web server software and tested that it works (which is included in the manual) we can now get to know the basics of PHP.  For our guide we will be using <strong><a href=http://www.w3.org/Protocols/>HTTP</a></strong> combined with PHP, this allows PHP code to be embedded into regular html pages and thus simplifying the execution by simply requesting the page. PHP uses start and stop tags in the form of &#8220;?php&#8221; and &#8220;?&#8221; and below is a sample:</p>
<p><?php<br />
".. PHP Code".<br />
?></p>
<p>The following sample has PHP code embedded within HTTP:<br />
<html><br />
<head></head><br />
<body><br />
Fan: Who are You?<br />
<br />
<?php<br />
//print output<br />
Echo "My name is MacGyver";?><br />
</body><br />
</html></p>
<p>Upon execution or opening the page this would give you text in the browser stating the following words. &#8220;<strong>Who are You?</strong>&#8221; &#8220;<strong>My name is MacGyver</strong>&#8220;. This would be the equivalent hello world program many books use in teaching the basics of programming.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/php-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Array Chunk Function</title>
		<link>http://phpprogrammingtips.net/basic-programming/array-chunk-function/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/array-chunk-function/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 11:14:57 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[Array manipulation]]></category>
		<category><![CDATA[Programming PHP]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/uncategorized/array-chunk-function/</guid>
		<description><![CDATA[
The array_chunk() function on the on the other hand as the name implies, divides an array into chunks or several tables from the source table. The syntax goes something like array_chunk(array,size,preserve_key), wherein the array is the table that would be divided, the size is the number of elements which the new arrays are to contain [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://smallcode.weblogs.us/2006/07/"><img src="/wp-content/uploads/scraped/18.jpg"/></a>
<p>The array_chunk() function on the on the other hand as the name implies, divides an array into chunks or several tables from the source table. The syntax goes something like array_chunk(array,size,preserve_key), wherein the array is the table that would be divided, the size is the number of elements which the new arrays are to contain and the preserve key which can either be true or false is used to either retain or revise the key or pointer value of the original table. An example is shown below:</p>
<p><?php<br />
$a=array(ï¿½aï¿½=>ï¿½Catï¿½, ï¿½bï¿½=>ï¿½Dogï¿½, ï¿½cï¿½=>ï¿½Horseï¿½,ï¿½dï¿½=>ï¿½Cowï¿½);<br />
print_r(array_chunk($a,2);<br />
?></p>
<p>The code would have an output of:</p>
<p>Array (<br />
[0] => Array ( [0] = > Cat    [1] => Dog )<br />
[1] => Array ( [0] => Horse [1] => Cow )<br />
)</p>
<p>As we can see, the original array has been divided into two arrays array0 and array1 and a value that is not given for the key had it assigned a new key for each of the tables. Another example would be :</p>
<p><?php<br />
$a=array(ï¿½aï¿½=>ï¿½Catï¿½, ï¿½bï¿½=>ï¿½Dogï¿½, ï¿½cï¿½=>ï¿½Horseï¿½,ï¿½dï¿½=>ï¿½Cowï¿½);<br />
print_r(array_chunk($a,2,true);<br />
?></p>
<p>This would then give us ;<br />
Array (<br />
[0] => Array ( [a] = > Cat    [b] => Dog )<br />
[1] => Array ( [c] => Horse [d] => Cow )<br />
)</p>
<p>This shows the significance of the retain key field wherein the two new arrays retained their original keys. The reverse of which would be the array_combine() which divided the array into one which holds the keys and one with the values.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/array-chunk-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arrays : Changing cases</title>
		<link>http://phpprogrammingtips.net/basic-programming/arrays-%e2%80%93-changing-cases/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/arrays-%e2%80%93-changing-cases/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 11:13:56 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[Array manipulation]]></category>
		<category><![CDATA[Programming PHP]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/uncategorized/arrays-%e2%80%93-changing-cases/</guid>
		<description><![CDATA[
This form of array declaration allows one to change the case from uppercase to lowercase and vice versa. The syntax goes as follows:
array_change_key_case(array,case)
The array part, specifies which table or array to use and is a required field which is not the case with the key which is automatically assigned a value. An example of it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://askbobrankin.com/what_is_raid.html"><img src="/wp-content/uploads/scraped/17.jpg"/></a>
<p>This form of array declaration allows one to change the case from uppercase to lowercase and vice versa. The syntax goes as follows:</p>
<p>array_change_key_case(array,case)</p>
<p>The array part, specifies which table or array to use and is a required field which is not the case with the key which is automatically assigned a value. An example of it&#8217;s use can be seen below:</p>
<p><?php<br />
$a=array('a'=>&#8220;Mouse&#8221;,&#8217;b'=>&#8221;Rat&#8221;,&#8217;c'=>&#8221;Rodent&#8221;,&#8217;d'=>&#8221;Cat&#8221;);<br />
print_r(array_change_key_case($a,CASE_UPPER));<br />
?></p>
<p>The output of the said commands will be:<br />
Array ( [A] => Mouse [B] => Rat [C] => Rodent [D] => Cat)</p>
<p>Another example of it&#8217;s use would be:</p>
<p><?php<br />
$a=array('a'=>&#8220;Mouse&#8221;,&#8217;B'=>&#8221;Rat&#8221;,&#8217;c'=>&#8221;Rodent&#8221;,&#8217;b'=>&#8221;Cat&#8221;);<br />
print_r(array_change_key_case($a,CASE_UPPER));<br />
?></p>
<p>That returns the following values respectively:<br />
Array ( [A] => Mouse [B] => Rat [C] => Rodent [D] => Cat)</p>
<p>In the next post, we would discuss an array function that divides a large array into several chunks of separate arrays.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/arrays-%e2%80%93-changing-cases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Programming Tutorials &amp; Tips</title>
		<link>http://phpprogrammingtips.net/basic-programming/php-programming-tutorials-tips/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/php-programming-tutorials-tips/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 10:57:14 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Basic Programming]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/basic-programming/php-programming-tutorials-tips/</guid>
		<description><![CDATA[
One of the more popular technologies for web programming in the recent years owing to its open source technology is the PHP. And it only means that itâ€™s free to use and also compatible with almost any server, say Windows, Linux/Unix and Apache. This technology has many advanced features included in it though its open [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://baliwebstudio.wordpress.com/2007/11/29/web-programmer-vacancy-bali-indonesia/"><img src="/wp-content/uploads/scraped/26.jpg"/></a>
<p>One of the more popular technologies for web programming in the recent years owing to its open source technology is the PHP. And it only means that itâ€™s free to use and also compatible with almost any server, say Windows, Linux/Unix and Apache. This technology has many advanced features included in it though its open source.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/php-programming-tutorials-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP programming jobs still in demand</title>
		<link>http://phpprogrammingtips.net/basic-programming/php-programming-jobs-still-in-demand/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/php-programming-jobs-still-in-demand/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 10:35:09 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Basic Programming]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/basic-programming/php-programming-jobs-still-in-demand/</guid>
		<description><![CDATA[
Technology Driven Marketing Solutions is an industry leading developer of PHP solutions who will become part of a dynamic and fast growing team. You may experience to make codes for a range of web applications by applying your PHP and OOD programming. Success in this field will lead to further career opportunities within the organization.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.itjobswatch.co.uk/jobs/uk/php%2520programmer.do"><img src="/wp-content/uploads/scraped/25.jpg"/></a>
<p>Technology Driven Marketing Solutions is an industry leading developer of PHP solutions who will become part of a dynamic and fast growing team. You may experience to make codes for a range of web applications by applying your PHP and OOD programming. Success in this field will lead to further career opportunities within the organization.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/php-programming-jobs-still-in-demand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Templates and ready made Apps on the Web (Part 2)</title>
		<link>http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-2/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-2/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 10:35:19 +0000</pubDate>
		<dc:creator>Avatar</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[Free templates]]></category>
		<category><![CDATA[PHP Help Sites]]></category>
		<category><![CDATA[sample templates]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-2/</guid>
		<description><![CDATA[
There are a lot of programmers who share code and sample applications which you can use for free (provided you clear it up first) but for budding programmers, they&#8217;re all there for the taking. Sites like &#60;a href=&#8221;http://websitetips.com/php/&#8221;&#62;websitetips.com&#60;/a&#62;, &#60;a href=&#8221;http://www.smartwebby.com/PHP/default.asp&#8221;&#62;Smartwebby.com&#60;/a&#62; and many other blogs and help sites allows access to tips from programmers like you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://msdn.microsoft.com/en-us/library/bb530302.aspx"><img src="/wp-content/uploads/scraped/34.jpg"/></a>
<p>There are a lot of programmers who share code and sample applications which you can use for free (provided you clear it up first) but for budding programmers, they&#8217;re all there for the taking. Sites like &lt;a href=&#8221;http://websitetips.com/php/&#8221;&gt;websitetips.com&lt;/a&gt;, &lt;a href=&#8221;http://www.smartwebby.com/PHP/default.asp&#8221;&gt;Smartwebby.com&lt;/a&gt; and many other blogs and help sites allows access to tips from programmers like you making it a pleasant experience altogether. Canâ€™t find a question, post questions to the many forums and you&#8217;ll get help from others in no time, you might even get help from the guru&#8217;s themselves who made the phenomenon that is PHP possible for all of us to use.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Templates and ready made Apps on the Web (Part 1)</title>
		<link>http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-1/</link>
		<comments>http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-1/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 10:34:25 +0000</pubDate>
		<dc:creator>Avatar</dc:creator>
				<category><![CDATA[Basic Programming]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[Online references]]></category>
		<category><![CDATA[PHP Help]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-1/</guid>
		<description><![CDATA[
Thanks to the basic foundation on which PHP is founded on, the language being free of all legalities and other stuff that makes deployment of other languages on the many platforms quite expensive. But the many people who makeup the PHP community are not ones who keep knowledge to themselves for there are tons of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://msdn.microsoft.com/en-us/library/ms964439.aspx"><img src="/wp-content/uploads/scraped/33.jpg"/></a>
<p>Thanks to the basic foundation on which PHP is founded on, the language being free of all legalities and other stuff that makes deployment of other languages on the many platforms quite expensive. But the many people who makeup the PHP community are not ones who keep knowledge to themselves for there are tons of free pre-made templates for applications and processes on the web available for programmers from all skill levels. They make it fun and easy to learn the language in no time and the community fosters growth to all of those who benefit from the use of PHP. Search online for help and you will surely get it in the form of forums and other helpful articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/basic-programming/templates-and-ready-made-apps-on-the-web-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Galileo &#8211; Soon to Grace PHP</title>
		<link>http://phpprogrammingtips.net/information/galileo-soon-to-grace-php/</link>
		<comments>http://phpprogrammingtips.net/information/galileo-soon-to-grace-php/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 05:26:14 +0000</pubDate>
		<dc:creator>Drew</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Related]]></category>

		<guid isPermaLink="false">http://phpprogrammingtips.net/?p=97</guid>
		<description><![CDATA[Galileo, an open-source framework that was developed by the Eclipse Foundation and sponsored by IBM is set for launch tomorrow. Hailed as one of the newest innovations to the development and deployment of open-sourced projects that is becoming more and more prominent with the internet of today. Eclipse is a non-profit organization that manages and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://tbn3.google.com/images?q=tbn:neqz1kxjaNMLjM:http://eclipsesource.com/blogs/wp-content/uploads/2009/05/galileologo.png" alt="" />Galileo, an open-source framework that was developed by the Eclipse Foundation and sponsored by IBM is set for launch tomorrow. Hailed as one of the newest innovations to the development and deployment of <a href="http://opensourcedailyjournal.com/">open-sourced projects</a> that is becoming more and more prominent with the internet of today. Eclipse is a non-profit organization that manages and maintains the many projects they are involved in, making them one of the biggest supporters of the open-source community.<span id="more-97"></span><br />
A mashup of several companies that includes some of the biggest names in open-source, Borland, IBM, MERANT, QNX Software Systems, Rational Software, Red Hat, SuSE, TogetherSoft and Webgain, in 2001 to probe the promise of open-source as the next evolutionary steps for the internet and other developments for web deployment. In conjunction with these industry leaders, they have managed to come up with impressive projects that have been deployed and are currently in use on the internet, Galileo being the latest is sure to help the internet become a safer place indeed for all of use to use and enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://phpprogrammingtips.net/information/galileo-soon-to-grace-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
