<?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 GURU &#187; Function</title>
	<atom:link href="http://phpguru.biz/blog/category/function/feed/" rel="self" type="application/rss+xml" />
	<link>http://phpguru.biz/blog</link>
	<description>Get Complete knowledge about PHP HTML CSS DataBase JavaScipt</description>
	<lastBuildDate>Wed, 25 Nov 2009 12:55:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP Functions</title>
		<link>http://phpguru.biz/blog/function/php-functions/</link>
		<comments>http://phpguru.biz/blog/function/php-functions/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 12:55:35 +0000</pubDate>
		<dc:creator>joseph</dc:creator>
				<category><![CDATA[Function]]></category>
		<category><![CDATA[enter value in function]]></category>
		<category><![CDATA[how tomake function]]></category>
		<category><![CDATA[php function]]></category>
		<category><![CDATA[what is function in php]]></category>

		<guid isPermaLink="false">http://phpguru.biz/blog/?p=62</guid>
		<description><![CDATA[The real power of PHP comes from its functions.
In PHP, there are more than 700 built-in functions.
For a complete reference and examples of the built-in functions
in this chapter we will show you how to create your own functions.
To keep the browser from executing a script when the page loads, you can put  your script [...]]]></description>
		<wfw:commentRss>http://phpguru.biz/blog/function/php-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Information about PHP Filter</title>
		<link>http://phpguru.biz/blog/function/information-about-php-filter/</link>
		<comments>http://phpguru.biz/blog/function/information-about-php-filter/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:30:38 +0000</pubDate>
		<dc:creator>chintan</dc:creator>
				<category><![CDATA[Function]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[details]]></category>
		<category><![CDATA[Filter]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://phpguru.biz/blog/index.php/function/information-about-php-filter/</guid>
		<description><![CDATA[This PHP filters is used to validate and filter data coming from insecure sources, like user input.
Installation
The filter functions are part of the PHP core. There is no installation needed to use these functions.
PHP Filter Functions
PHP: indicates the earliest version of PHP that supports the function.


Function
Description
PHP version


filter_has_var()
Checks if a variable of a specified input type [...]]]></description>
		<wfw:commentRss>http://phpguru.biz/blog/function/information-about-php-filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Use Of include() Function &amp; require() Function in PHP</title>
		<link>http://phpguru.biz/blog/sample-code/the-use-of-include-function-require-function-in-php/</link>
		<comments>http://phpguru.biz/blog/sample-code/the-use-of-include-function-require-function-in-php/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 09:39:46 +0000</pubDate>
		<dc:creator>chintan</dc:creator>
				<category><![CDATA[Function]]></category>
		<category><![CDATA[Sample Code]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Error message]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[Fatal error]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://phpguru.biz/blog/sample-code/</guid>
		<description><![CDATA[Server Side Includes
You can insert the content of a file into a PHP file before the server carry out it, with the include() or require() function. The two functions are identical in every way, except how they handle errors.
The include() function generates a warning (but the script will continue execution) 
The require() function generates a [...]]]></description>
		<wfw:commentRss>http://phpguru.biz/blog/sample-code/the-use-of-include-function-require-function-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dyanamic global function</title>
		<link>http://phpguru.biz/blog/function/dyanamic-global-function/</link>
		<comments>http://phpguru.biz/blog/function/dyanamic-global-function/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 11:17:47 +0000</pubDate>
		<dc:creator>chintan</dc:creator>
				<category><![CDATA[Function]]></category>
		<category><![CDATA[analogous problem]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[SQL-injections]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[technical PHP]]></category>
		<category><![CDATA[technique]]></category>
		<category><![CDATA[track down]]></category>

		<guid isPermaLink="false">http://phpguru.biz/blog/function/dyanamic-global-function</guid>
		<description><![CDATA[Like many others, I wish to use technical PHP as a template language. While PHPâ€™s syntax makes it a practical choice for this, there is a problem with embedding dynamic content. Most PHP applications produce HTML output, so you end up writing &#60;?php echo htmlspecialchars($foo);?&#62; a lot, using this technique. Or you forget it, and [...]]]></description>
		<wfw:commentRss>http://phpguru.biz/blog/function/dyanamic-global-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use of Function?</title>
		<link>http://phpguru.biz/blog/function/use-of-function/</link>
		<comments>http://phpguru.biz/blog/function/use-of-function/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 10:07:21 +0000</pubDate>
		<dc:creator>chintan</dc:creator>
				<category><![CDATA[Function]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[php function]]></category>
		<category><![CDATA[PHP Reference]]></category>
		<category><![CDATA[PHP script]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://phpguru.biz/blog/function/use-of-function</guid>
		<description><![CDATA[PHP Functions
In this lesson we will show you how to create your own functions.For a situation and examples of the built-in functions, please visit our PHP Reference.
Create a PHP Function
A function is a block of code that can be executed whenever we need it.
(1) All functions start with the word &#8220;function()&#8221;
(2) Name the function &#8211; [...]]]></description>
		<wfw:commentRss>http://phpguru.biz/blog/function/use-of-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

