<?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>webinfinite.com &#187; functions</title>
	<atom:link href="http://webinfinite.com/tag/functions/feed/" rel="self" type="application/rss+xml" />
	<link>http://webinfinite.com</link>
	<description></description>
	<lastBuildDate>Fri, 18 Jun 2010 16:26:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How do I create PHP Functions()</title>
		<link>http://webinfinite.com/php/how-do-i-create-php-functions/</link>
		<comments>http://webinfinite.com/php/how-do-i-create-php-functions/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 22:00:23 +0000</pubDate>
		<dc:creator>webinfinite</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[functions]]></category>

		<guid isPermaLink="false">http://webinfinite.com/?p=109</guid>
		<description><![CDATA[There are over 700 functions available in php and below I will show you how to create you own function.? Functions all start with the word function(). Here are some things to remember name your functions based on what a function does { start your function put your code } end your function call your [...]]]></description>
			<content:encoded><![CDATA[<p>There are over 700 functions available in php and below I will show you how to create you own function.? Functions all start with the word function(). Here are some things to remember</p>
<ul>
<li>name your functions based on what a function does</li>
<li>{ start your function</li>
<li>put your code</li>
<li>} end your function</li>
<li>call your function</li>
</ul>
<p>&lt;?php function fullname($firstname){ // Start your function with an appropriate function name</p>
<p>// Put your code</p>
<p>$last_name = &#8220;Smith&#8221;;<br />
$full_name= $first_name . &#8221; &#8221; . $last_name;<br />
return $full_name;</p>
<p>} // end your function</p>
<p>&lt;?PHP echo fullname(Joe); ?&gt; //Calling this function will display Joe Smith</p>
]]></content:encoded>
			<wfw:commentRss>http://webinfinite.com/php/how-do-i-create-php-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
