<?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>ArticlesRain</title>
	<atom:link href="http://www.articlesrain.com/tutorial/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.articlesrain.com/tutorial</link>
	<description>Tutotial</description>
	<lastBuildDate>Sat, 03 Apr 2010 08:26:10 +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>Rss Reader plugin</title>
		<link>http://www.articlesrain.com/tutorial/?p=23</link>
		<comments>http://www.articlesrain.com/tutorial/?p=23#comments</comments>
		<pubDate>Sat, 03 Apr 2010 08:09:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://www.articlesrain.com/tutorial/?p=23</guid>
		<description><![CDATA[Rss Reader plugin : &#8211; You can read the rss of other sites rss and you can show that rss on your site.
Downlaod : Click Here
== Installation ==
1. Upload `rss-reader` to the `/wp-content/plugins/` directory
2. Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress
3. Paste this Line where you want show RSS &#60;?php if ( function_exists(&#8216;rss_reader&#8217;) [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Rss Reader plugin </strong>: &#8211; You can read the rss of other sites rss and you can show that rss on your site.</p>
<p>Downlaod : <a href="http://www.articlesrain.com/tutorial/wp-content/downloads/rss-reader.rar">Click Here</a></p>
<p><strong>== Installation ==</strong></p>
<p>1. Upload `rss-reader` to the `/wp-content/plugins/` directory<br />
2. Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress<br />
3. Paste this Line where you want show RSS &lt;?php if ( function_exists(&#8216;rss_reader&#8217;) ) {    rss_reader();}    ?&gt;<br />
4. Please Don&#8217;t use this code the Loop Ex.&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
5. You can Set your doman through admin panle (Settings-&gt;Rss Reader)<br />
6. Set Your No Link</p>
<p><strong>Snap Shot</strong></p>
<p><a href="http://www.articlesrain.com/tutorial/wp-content/uploads/2010/04/rss-reader.gif"><img class="alignnone size-medium wp-image-27" title="rss-reader" src="http://www.articlesrain.com/tutorial/wp-content/uploads/2010/04/rss-reader-300x225.gif" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.articlesrain.com/tutorial/?feed=rss2&amp;p=23</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>chr — Return a specific character</title>
		<link>http://www.articlesrain.com/tutorial/?p=17</link>
		<comments>http://www.articlesrain.com/tutorial/?p=17#comments</comments>
		<pubDate>Thu, 18 Mar 2010 13:01:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Functions]]></category>

		<guid isPermaLink="false">http://www.articlesrain.com/tutorial/?p=17</guid>
		<description><![CDATA[string  chr (  int  $ascii )
Returns a one-character string containing the character specified    by ascii .
&#60;?php
$str .= chr(65);
echo $str; //A
?&#62;
]]></description>
			<content:encoded><![CDATA[<p>string  <strong>chr</strong> (  int  <tt>$ascii</tt> )</p>
<p>Returns a one-character string containing the character specified    by <em><tt>ascii</tt></em> .</p>
<p>&lt;?php<br />
$str .= chr(65);<br />
echo $str; //A<br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.articlesrain.com/tutorial/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>addslashes — Quote string with slashes</title>
		<link>http://www.articlesrain.com/tutorial/?p=15</link>
		<comments>http://www.articlesrain.com/tutorial/?p=15#comments</comments>
		<pubDate>Sat, 13 Feb 2010 00:21:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c]]></category>

		<guid isPermaLink="false">http://www.articlesrain.com/tutorial/?p=15</guid>
		<description><![CDATA[string addslashes ( string $str )
Returns a string with backslashes before characters that need    to be quoted in database queries etc.  These characters are    single quote (&#8216;), double quote    (&#8220;), backslash (\)    and NUL (the NULL byte).
Example:

 &#60;?php
$string = "My name is 'Jack [...]]]></description>
			<content:encoded><![CDATA[<p>string <strong>addslashes</strong> ( string <tt>$str</tt> )<br />
Returns a string with backslashes before characters that need    to be quoted in database queries etc.  These characters are    single quote (<em>&#8216;</em>), double quote    (<em>&#8220;</em>), backslash (<em>\</em>)    and NUL (the <strong><tt>NULL</tt></strong> byte).<br />
Example:</p>
<div>
<div><code> &lt;?php<br />
$string = "My name is 'Jack Smit'";<br />
// Outputs: </code><code>My name is \'Jack Smit\'</code><br />
<code>echo addslashes(</code><code>$string </code><code>);<br />
?&gt; </code></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.articlesrain.com/tutorial/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>strlen &#8211; Get string length</title>
		<link>http://www.articlesrain.com/tutorial/?p=8</link>
		<comments>http://www.articlesrain.com/tutorial/?p=8#comments</comments>
		<pubDate>Sun, 07 Feb 2010 13:49:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[String Functions]]></category>

		<guid isPermaLink="false">http://www.articlesrain.com/tutorial/?p=8</guid>
		<description><![CDATA[How Can count the length of String in php
int strlen ( string $string )
Returns the length of the given string
Example:
&#60;?php
$string1='Hello';
$string2='Hello World";
echo strlen($string1); //5
echo strlen($string2); //11
?&#62;

]]></description>
			<content:encoded><![CDATA[<p>How Can count the length of String in php</p>
<p>int <strong>strlen</strong> ( string <tt>$string</tt> )<br />
Returns the length of the given <em><tt>string</tt></em></p>
<p><em><tt>Example:<br />
&lt;?php<br />
$string1='Hello';<br />
$string2='Hello World";<br />
echo strlen($string1); //5<br />
echo strlen($string2); //11<br />
?&gt;</tt></em></p>
<p><em><tt></tt></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.articlesrain.com/tutorial/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About C</title>
		<link>http://www.articlesrain.com/tutorial/?p=1</link>
		<comments>http://www.articlesrain.com/tutorial/?p=1#comments</comments>
		<pubDate>Fri, 05 Feb 2010 00:53:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c]]></category>

		<guid isPermaLink="false">http://www.articlesrain.com/tutorial/?p=1</guid>
		<description><![CDATA[C  is a programming lanugage developed at AT &#38; T&#8217;s Bell laboratories of usa in 1972.
It was designed and writeen by a man named Dennis Ritchie.
C is called Meddle level language.
]]></description>
			<content:encoded><![CDATA[<p>C  is a programming lanugage developed at AT &amp; T&#8217;s Bell laboratories of usa in 1972.</p>
<p>It was designed and writeen by a man named Dennis Ritchie.</p>
<p>C is called Meddle level language.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.articlesrain.com/tutorial/?feed=rss2&amp;p=1</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
