<?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 Web Application Developer from Bangladesh &#187; PHP</title>
	<atom:link href="http://www.yunuscse.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yunuscse.com</link>
	<description>Multi Language Web Expert</description>
	<lastBuildDate>Sun, 25 Jul 2010 18:53:38 +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>How learn HTML &amp; CSS easily? Tutorial &#8211; 2</title>
		<link>http://www.yunuscse.com/2010/04/19/how-learn-html-css-easily-tutorial-2/</link>
		<comments>http://www.yunuscse.com/2010/04/19/how-learn-html-css-easily-tutorial-2/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 06:56:26 +0000</pubDate>
		<dc:creator>Yunus Ali Khan</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[bangla css tutorial]]></category>
		<category><![CDATA[bangla html css tutorial]]></category>
		<category><![CDATA[bangla html tutorial]]></category>
		<category><![CDATA[css easy tutorial]]></category>
		<category><![CDATA[html css tutorial]]></category>
		<category><![CDATA[html easy tutorial]]></category>
		<category><![CDATA[html tutoria]]></category>

		<guid isPermaLink="false">http://www.yunuscse.com/?p=55</guid>
		<description><![CDATA[HTML এর একটা বেসিক Structure আছে। যেটা সবাইকে অবশ্যই Follow করতে হবে।
বেসিক Structure টি নিন্মরুপঃ-
&#60;html&#62;
&#60;head&#62;
&#60;title&#62;        এখানে টাইটেল লিখবেন যা ওয়েন ব্রাউজারের উপরে শো করবে।         &#60;/title&#62;
&#60;/head&#62;
&#60;body&#62;
এখানে মূল পেইজটির যাবতীয় জিনিস লিখবেন
&#60;/body&#62;
&#60;/html&#62;
html ফাইল লিখার জন্য অবশ্যই আপনাকে html ট্যাগ দিয়ে শুরু করতে [...]]]></description>
		<wfw:commentRss>http://www.yunuscse.com/2010/04/19/how-learn-html-css-easily-tutorial-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable curl in XAMPP?</title>
		<link>http://www.yunuscse.com/2010/03/12/how-enable-curl-in-xampp/</link>
		<comments>http://www.yunuscse.com/2010/03/12/how-enable-curl-in-xampp/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 18:08:46 +0000</pubDate>
		<dc:creator>Yunus Ali Khan</dc:creator>
				<category><![CDATA[CURL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[curl in xampp]]></category>
		<category><![CDATA[enable curl in xampp]]></category>
		<category><![CDATA[windows curl]]></category>

		<guid isPermaLink="false">http://www.yunuscse.com/?p=29</guid>
		<description><![CDATA[Enable curl with XAMPP on Windows XP
What is your Xampp version?
If your viersion is &#62;= 1.7.1 then follow the following instruction:-
1. Open ..\xampp\php\php.ini
2. Uncomment the following line on your php.ini file by removing the semicolon.
;extension=php_curl.dll
3. Restart your apache server
Otherwise follow following instruction:-

1. Open the following files-
..\xampp\apache\bin\php.ini
..\xampp\php\php.ini
..\xampp\php\php4\php.ini
2) Uncomment the following line on your php.ini file by [...]]]></description>
		<wfw:commentRss>http://www.yunuscse.com/2010/03/12/how-enable-curl-in-xampp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Alphabetical search using php</title>
		<link>http://www.yunuscse.com/2010/03/11/alphabetical-search-using-php/</link>
		<comments>http://www.yunuscse.com/2010/03/11/alphabetical-search-using-php/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 06:48:39 +0000</pubDate>
		<dc:creator>Yunus Ali Khan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Alphabetic pagination]]></category>
		<category><![CDATA[Alphabetic search]]></category>
		<category><![CDATA[Alphabetical pagination]]></category>
		<category><![CDATA[Alphabetical search]]></category>
		<category><![CDATA[php alphabetic search]]></category>

		<guid isPermaLink="false">http://www.yunuscse.com/?p=22</guid>
		<description><![CDATA[Sometimes we have need alphabetical search or pagination. It is very much simple. How we will do it-
1. At first we will make an array with all alphabetical character.
&#60;?php
$allAlphabet = array(&#8216;A&#8217;, &#8216;B&#8217;, &#8216;C&#8217;, &#8216;D&#8217;, &#8216;E&#8217;, &#8216;F&#8217;, &#8216;G&#8217;, &#8216;H&#8217;, &#8216;I&#8217;, &#8216;J&#8217;, &#8216;K&#8217;, &#8216;L&#8217;, &#8216;M&#8217;, &#8216;N&#8217;, &#8216;O&#8217;, &#8216;P&#8217;, &#8216;Q&#8217;, &#8216;R&#8217;, &#8216;S&#8217;, &#8216;T&#8217;, &#8216;U&#8217;, &#8216;V&#8217;, &#8216;W&#8217;, &#8216;X&#8217;, &#8216;Y&#8217;, [...]]]></description>
		<wfw:commentRss>http://www.yunuscse.com/2010/03/11/alphabetical-search-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jabber Integration &#8212; Is it so tough?</title>
		<link>http://www.yunuscse.com/2010/03/08/jabber-integration-is-it-so-tough/</link>
		<comments>http://www.yunuscse.com/2010/03/08/jabber-integration-is-it-so-tough/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 08:17:49 +0000</pubDate>
		<dc:creator>Yunus Ali Khan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP API]]></category>
		<category><![CDATA[Jabber API]]></category>
		<category><![CDATA[Jabber PHP]]></category>
		<category><![CDATA[Xampp]]></category>
		<category><![CDATA[xmpphp]]></category>

		<guid isPermaLink="false">http://www.yunuscse.com/?p=8</guid>
		<description><![CDATA[What is jabber:
Jabber is an initiative to produce an open source, XML based instant messanging platform.
Jabber is an API to provide instant messaging and presence functionality independent of data exchanged between entities. The primary use of Jabber is to give existing applications instant connectivity through messaging and presence features, contact list capabilities, and back-end services [...]]]></description>
		<wfw:commentRss>http://www.yunuscse.com/2010/03/08/jabber-integration-is-it-so-tough/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
