<?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 Tutorials Code Snippets and Php Tips &#187; clear extra white spaces</title>
	<atom:link href="http://readytousesolutions.com/phpblog/tag/clear-extra-white-spaces/feed/" rel="self" type="application/rss+xml" />
	<link>http://readytousesolutions.com/phpblog</link>
	<description>PHP tutorials - Examples of the most useful scripts</description>
	<lastBuildDate>Thu, 23 Sep 2010 06:54:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP Tutorial : Clear white spaces</title>
		<link>http://readytousesolutions.com/phpblog/php-tutorial-clear-white-spaces/</link>
		<comments>http://readytousesolutions.com/phpblog/php-tutorial-clear-white-spaces/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 15:23:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basic PHP]]></category>
		<category><![CDATA[clear blank spaces]]></category>
		<category><![CDATA[clear extra spaces]]></category>
		<category><![CDATA[clear extra white spaces]]></category>
		<category><![CDATA[clear white spaces]]></category>
		<category><![CDATA[php clear extra spaces]]></category>
		<category><![CDATA[php clear extra white spaces]]></category>
		<category><![CDATA[php clear white spaces]]></category>
		<category><![CDATA[php trim]]></category>
		<category><![CDATA[trim]]></category>

		<guid isPermaLink="false">http://www.crivionweb.com/phpblog/?p=167</guid>
		<description><![CDATA[Ever got extra white spaces and dont wanna clear them manually or just cannot? In PHP, we have a great function called trim(), which will do your job. If you made a .htaccess rewrite (most of the cases), or just &#8230; <a href="http://readytousesolutions.com/phpblog/php-tutorial-clear-white-spaces/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ever got extra white spaces and dont wanna clear them manually or just cannot? In PHP, we have a great function called trim(), which will do your job. If you made a .htaccess rewrite (most of the cases), or just a form input to validate and clear its extra white spaces just do a trim().</p>
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span>
$extraWhiteSpace <span class="phpOperator">=</span> <span class="phpString">" bla bllla  b   l      a"</span><span class="phpText">;</span>
$extraWhiteSpace <span class="phpOperator">=</span> <span class="phpFunction">trim</span><span class="phpOperator">(</span>$extraWhiteSpace<span class="phpOperator">)</span><span class="phpText">;</span>
<span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://readytousesolutions.com/phpblog/php-tutorial-clear-white-spaces/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

