<?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>Khem Raj Maurya</title>
	<atom:link href="http://www.krmaurya.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.krmaurya.com</link>
	<description>PHP Freelancer Developer from India</description>
	<lastBuildDate>Sat, 22 Oct 2011 13:30:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Sending Email with attachment in zend framewok</title>
		<link>http://www.krmaurya.com/05/sending-email-with-attachment-in-zend-framewok/</link>
		<comments>http://www.krmaurya.com/05/sending-email-with-attachment-in-zend-framewok/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 15:32:38 +0000</pubDate>
		<dc:creator>Khem Raj</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://krmaurya.com/?p=59</guid>
		<description><![CDATA[In your controller, write something like this. $emial_body = “&#60;table&#62;&#60;tr&#62;&#60;td&#62;Body of the email&#60;/td&#62;&#60;/tr&#62;&#60;/table”; $mail = new Zend_Mail(); $mail-&#62;setType(Zend_Mime::MULTIPART_RELATED); $mail-&#62;setBodyHtml($email_body); $mail-&#62;setFrom(&#8216;support@example.com&#8217;, &#8216;Example&#8217;); $mail-&#62;addTo(&#8216;user@abc.com&#8217;, &#8216;Username&#8217;); $mail-&#62;setSubject(&#8216;Sending email using Zend Framework&#8217;); $mail-&#62;send(); Although, this will send email, however it’s not a good approach to create email in your controller as your mail body may contain thousands of words.&#8230;]]></description>
		<wfw:commentRss>http://www.krmaurya.com/05/sending-email-with-attachment-in-zend-framewok/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sending Email in Zend Framework</title>
		<link>http://www.krmaurya.com/05/sending-email-in-zend-framework/</link>
		<comments>http://www.krmaurya.com/05/sending-email-in-zend-framework/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 14:52:56 +0000</pubDate>
		<dc:creator>Khem Raj</dc:creator>
				<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://krmaurya.com/?p=52</guid>
		<description><![CDATA[Sending Email using SMTP authentication in Zend Framework]]></description>
		<wfw:commentRss>http://www.krmaurya.com/05/sending-email-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Indian Rupee Symbol at website</title>
		<link>http://www.krmaurya.com/05/using-indian-rupee-symbol-at-website/</link>
		<comments>http://www.krmaurya.com/05/using-indian-rupee-symbol-at-website/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 12:35:19 +0000</pubDate>
		<dc:creator>Khem Raj</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://krmaurya.com/?p=24</guid>
		<description><![CDATA[Using the Indian Rupee symbol at website is very simple. To use this plz follow the following steps. Step-1: Click here to download required files. Step-2: Extract and copy the folder to your project directory. Step-3: Link the rupees.css file under the &#60;head&#62; tag of your page in which you want to use rupee symbol. Step-4: Use &#60;span&#62;Rs.&#60;/span&#62;&#8230;]]></description>
		<wfw:commentRss>http://www.krmaurya.com/05/using-indian-rupee-symbol-at-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Relevent Searching in mysql</title>
		<link>http://www.krmaurya.com/17/searching-in-mysql/</link>
		<comments>http://www.krmaurya.com/17/searching-in-mysql/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 07:34:30 +0000</pubDate>
		<dc:creator>Khem Raj</dc:creator>
				<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://krmaurya.com/?p=13</guid>
		<description><![CDATA[In one of the my project I require to search news by its summary and description, I use following mysql query. SELECT * FROM news WHERE summary LIKE &#8217;%$keyword%&#8217;; This was slow and inefficient.Every time i searched for an news, they got far too many results, and as the database grew the system became downright. So i tried to find the solution&#8230;]]></description>
		<wfw:commentRss>http://www.krmaurya.com/17/searching-in-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How find first few words of the given Text/String using php</title>
		<link>http://www.krmaurya.com/17/how-find-first-few-words-of-the-given-textstring-using-php/</link>
		<comments>http://www.krmaurya.com/17/how-find-first-few-words-of-the-given-textstring-using-php/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 06:29:17 +0000</pubDate>
		<dc:creator>Khem Raj</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://krmaurya.com/?p=8</guid>
		<description><![CDATA[How find first few words of the given Text/String using php]]></description>
		<wfw:commentRss>http://www.krmaurya.com/17/how-find-first-few-words-of-the-given-textstring-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Zend Captcha</title>
		<link>http://www.krmaurya.com/13/hello-world/</link>
		<comments>http://www.krmaurya.com/13/hello-world/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 07:54:43 +0000</pubDate>
		<dc:creator>Khem Raj</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[captcha library in zend framework]]></category>
		<category><![CDATA[Using Zend Captcha]]></category>
		<category><![CDATA[Zend framework captch]]></category>

		<guid isPermaLink="false">http://krmaurya.com/?p=1</guid>
		<description><![CDATA[Using Zend Captcha]]></description>
		<wfw:commentRss>http://www.krmaurya.com/13/hello-world/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
	</channel>
</rss>
