<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Sajjad's Blog</title>
	<atom:link href="http://msh134.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://msh134.wordpress.com</link>
	<description>Courage to do something...</description>
	<lastBuildDate>Mon, 11 Apr 2011 12:33:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='msh134.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Sajjad's Blog</title>
		<link>http://msh134.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://msh134.wordpress.com/osd.xml" title="Sajjad&#039;s Blog" />
	<atom:link rel='hub' href='http://msh134.wordpress.com/?pushpress=hub'/>
		<item>
		<title>JavaScript: String trimming and padding</title>
		<link>http://msh134.wordpress.com/2008/11/19/javascript-string-trimming-and-padding/</link>
		<comments>http://msh134.wordpress.com/2008/11/19/javascript-string-trimming-and-padding/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 09:57:59 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[padding]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[trimming]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=27</guid>
		<description><![CDATA[When working with JavaScript in one of my projects I needed to trim strings and pad them. I googled for a solution and many sources I have got the following codes and sharing with you. Trimming: //trimming space from both side of the string String.prototype.trim = function() { return this.replace(/^\s+&#124;\s+$/g,""); } //trimming space from left [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=27&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When working with JavaScript in one of my projects I needed to trim strings and pad them. I googled for a solution and many sources I have got the following codes and sharing with you.</p>
<p><strong>Trimming:</strong></p>
<pre>//trimming space from both side of the string
String.prototype.trim = function() {
	return this.replace(/^\s+|\s+$/g,"");
}

//trimming space from left side of the string
String.prototype.ltrim = function() {
	return this.replace(/^\s+/,"");
}

//trimming space from right side of the string
String.prototype.rtrim = function() {
	return this.replace(/\s+$/,"");
}</pre>
<p><strong>Using Trim Functions:</strong></p>
<pre>//write the code given above
var str = "  black  ";
alert("a" + str.trim() + "b");   //result "ablackb"
alert("a" + str.ltrim() + "b");  //result "ablack b"
alert("a" + str.rtrim() + "b");  //result "a blackb"</pre>
<p><a class="alignright" title="Sting Trimming and Padding" href="http://sajjadhossain.com/2008/10/31/javascript-str…ng-and-padding/">More &gt;&gt;</a></p>
<br />Posted in Javascript Tagged: Javascript, padding, string, trimming <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=27&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/11/19/javascript-string-trimming-and-padding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>SSL (HTTPS) URLs and CodeIgniter</title>
		<link>http://msh134.wordpress.com/2008/10/28/ssl-https-urls-and-codeigniter/</link>
		<comments>http://msh134.wordpress.com/2008/10/28/ssl-https-urls-and-codeigniter/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 15:31:38 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code igniter]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[secured url]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[ssl redirection]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=25</guid>
		<description><![CDATA[I am a fan of CodeIgniter for its ease of use. I have developed several ecommerce projects using this “beautiful” framework. While working on my first ecommerce project with CodeIgniter, I faced a problem with URLs. The site was suppose to use both “http” and “https”. But with CodeIgnitor we can define one base URL, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=25&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am a fan of CodeIgniter for its ease of use. I have developed several ecommerce projects using this “beautiful” framework. While working on my first ecommerce project with CodeIgniter, I faced a problem with URLs. The site was suppose to use both “http” and “https”. But with CodeIgnitor we can define one base URL, which can be either “http” or “https”. Then I came up with an idea and now I am going to share that idea with you. </p>
<p><a class="alignright" href="http://sajjadhossain.com/2008/10/27/ssl-https-urls-and-codeigniter/">More &gt;&gt;</a></p>
<br />Posted in My Work, PHP Tagged: code igniter, https, secured url, ssl, ssl redirection <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=25&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/10/28/ssl-https-urls-and-codeigniter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>CodeIgniter &#8211; Plugin for DOMPDF</title>
		<link>http://msh134.wordpress.com/2008/06/21/codeigniter-plugin-for-dompdf/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/codeigniter-plugin-for-dompdf/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 16:01:23 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[dompdf]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=16</guid>
		<description><![CDATA[I have modified the plugin for DOMPDF which is found in CodeIgniter forum. I have added the paper size and orientation parameters. Here is the code to share with you. More &#62;&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=16&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have modified the plugin for DOMPDF which is found in CodeIgniter forum. I have added the paper size and orientation parameters. Here is the code to share with you.</p>
<p><a class="alignright" href="http://sajjadhossain.com/2008/06/21/codeigniter-plugin-for-dompdf/" target="_self">More &gt;&gt;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=16&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/codeigniter-plugin-for-dompdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>DOMPDF without PDFLib as back-end PDF support</title>
		<link>http://msh134.wordpress.com/2008/06/21/dompdf-without-pdflib-as-back-end-pdf-support/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/dompdf-without-pdflib-as-back-end-pdf-support/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 15:59:42 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[dompdf]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[pdflib]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=15</guid>
		<description><![CDATA[I was implementing PDF generation in one of projects which is built with CodeIgniter. I searched for PDF support for CodeIgniter and found issue. I was happy, but the problem was with the PDFLib. Its not free and our client would not buy it. I thought that DOMPDF will not work without the help of PDFLib. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=15&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was implementing PDF generation in one of projects which is built with CodeIgniter. I searched for PDF support for CodeIgniter and found <a href="http://codeigniter.com/wiki/PDF_generation_using_dompdf/" target="_blankhelp on CI forum&lt;/a&gt;. I followed the instruction given there and used DOMPDF. The result was satisfactory though I faced an &lt;a href=">issue</a>. I was happy, but the problem was with the PDFLib. Its not free and our client would not buy it. I thought that DOMPDF will not work without the help of PDFLib. Soon I loss my happiness and started looking for an alternate solution. Then our team decided to use HTML2FPDF. But the result was not satisfactory. We had to rewrite our html files. It was lacking lots of HTML support. I was not happy with the output. So I started googling again for a PDF library. While searching I came accross a library called HTML2PS/HTML2PDF. But, it seemed to me complex. I again started searching for any solution which will help me use DOMPDF in my project without PDFLib. At last I got the solution from <a href="http://www.digitaljunkies.ca/dompdf/install.php" target="_blank">DOMPDF site</a> <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=15&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/dompdf-without-pdflib-as-back-end-pdf-support/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>DOMPDF Attachment issue in IE (Internet Explorer)</title>
		<link>http://msh134.wordpress.com/2008/06/21/dompdf-attachment-issue-in-ie-internet-explorer/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/dompdf-attachment-issue-in-ie-internet-explorer/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 15:56:25 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[dompdf]]></category>
		<category><![CDATA[dompdf ie issue]]></category>
		<category><![CDATA[php dompdf internet explorer issue]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=14</guid>
		<description><![CDATA[I have used DOMPDF in my project. But I was facing problem with Attachment. In FireFox it was working fine. But in Internet Explorer (I used IE 6) it ended with an error. In IE it was showing the download dialogue box offering the script page I used to generate the PDF file. When I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=14&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">I have used DOMPDF in my project. But I was facing problem with Attachment. In FireFox it was working fine. But in Internet Explorer (I used IE 6) it ended with an error. In IE it was showing the download dialogue box offering the script page I used to generate the PDF file. When I tried to download the file it showed an error.</p>
<p class="MsoNormal"><a class="alignright" href="http://sajjadhossain.com/2008/05/30/dompdf-attachment-issue-in-ie-internet-explorer/" target="_self">More &gt;&gt;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=14&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/dompdf-attachment-issue-in-ie-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>Paging Class using PHP and MySQL</title>
		<link>http://msh134.wordpress.com/2008/06/21/paging-class-using-php-and-mysql/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/paging-class-using-php-and-mysql/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 15:54:22 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[paging]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=13</guid>
		<description><![CDATA[Based on my last post on paging using PHP and MySQL, I have coded this class. It is very easy to implement and it will save your time. Here is a code snippet to show how simple to use it. More &#62;&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=13&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Based on my last post on <a href="http://sajjadhossain.com/2008/03/09/paging-using-php-and-mysql/" target="_blank">paging using PHP and MySQL</a>, I have coded this class. It is very easy to implement and it will save your time. Here is a code snippet to show how simple to use it.</p>
<p><a class="alignright" href="http://sajjadhossain.com/2008/04/24/paging-class-using-php-and-mysql/" target="_self">More &gt;&gt;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=13&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/paging-class-using-php-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>Date control using JavaScript</title>
		<link>http://msh134.wordpress.com/2008/06/21/date-control-using-javascript/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/date-control-using-javascript/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 15:52:45 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[My Work]]></category>
		<category><![CDATA[date control]]></category>
		<category><![CDATA[date picker]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=12</guid>
		<description><![CDATA[Date control is a combination of three drop downs with month, day and year valus. It can be used as an alternative to the date picker control. Suppose a user needs to select a date before/after 10 years. At this point selecting the date with a date picker will not be easy and time consuming. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=12&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Date control is a combination of three drop downs with month, day and year valus. It can be used as an alternative to the date picker control. Suppose a user needs to select a date before/after 10 years. At this point selecting the date with a date picker will not be easy and time consuming. So, in this situation, this control may be helpful.</p>
<p><a class="alignright" href="http://sajjadhossain.com/2008/03/13/date-control-using-javascript/" target="_self">More &gt;&gt;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=12&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/date-control-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>Regular Expression Patterns</title>
		<link>http://msh134.wordpress.com/2008/06/21/regular-expression-patterns/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/regular-expression-patterns/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 15:50:32 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[Regular Expression]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regexp]]></category>
		<category><![CDATA[regular expressions patterns]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=11</guid>
		<description><![CDATA[From various sources I have collected the following regular expression patterns. They helped me a lot in front-end and back-end validation. Alpha: Pattern: ^[a-zA-Z_ ]+$ Description: Allows only ‘A-Z’, ‘a-z’, space ( ‘ ‘ ) and underscore ( ‘_’). Alphanumeric: Pattern: ^[a-zA-Z0-9_ ]+$ Description: Allows only ‘A-Z’, ‘a-z’, ‘0-9′, space ( ‘ ‘ ) and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=11&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From various sources I have collected the following regular expression patterns. They helped me a lot in front-end and back-end validation.</p>
<h3>Alpha:</h3>
<p><strong>Pattern:</strong> ^[a-zA-Z_ ]+$<br />
<strong>Description:</strong> Allows only ‘A-Z’, ‘a-z’, space ( ‘ ‘ ) and underscore ( ‘_’).</p>
<h3>Alphanumeric:</h3>
<p><strong>Pattern:</strong> ^[a-zA-Z0-9_ ]+$<br />
<strong>Description:</strong> Allows only ‘A-Z’, ‘a-z’, ‘0-9′, space ( ‘ ‘ ) and underscore ( ‘_’).</p>
<p><a class="alignright" href="http://sajjadhossain.com/2008/02/27/regular-expressions-patterns/" target="_self">More &gt;&gt;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=11&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/regular-expression-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>FS Snake &amp; Lader 1.0</title>
		<link>http://msh134.wordpress.com/2008/06/21/fs-snake-lader-10/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/fs-snake-lader-10/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 15:48:06 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[vb game]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=10</guid>
		<description><![CDATA[This game is based on a paper game, Snake and Ladder. You may have played this game before. I have added nothing more. I have just programmed it for my nephews and nieces. They give me the inspiration for designing and programming this game. Hope you will like it. More &#62;&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=10&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This game is based on a paper game, Snake and Ladder. You may have played this game before. I have added nothing more. I have just programmed it for my nephews and nieces. They give me the inspiration for designing and programming this game. Hope you will like it.</p>
<p><a class="alignright" href="http://sajjadhossain.com/2008/02/25/fs-snake-lader-10/" target="_self">More &gt;&gt;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=10&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/fs-snake-lader-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
		<item>
		<title>MSH Mini Puzzle Game 1.0</title>
		<link>http://msh134.wordpress.com/2008/06/21/msh-mini-puzzle-game-10/</link>
		<comments>http://msh134.wordpress.com/2008/06/21/msh-mini-puzzle-game-10/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 15:42:05 +0000</pubDate>
		<dc:creator>msh134</dc:creator>
				<category><![CDATA[My Work]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[vb game]]></category>

		<guid isPermaLink="false">http://msh134.wordpress.com/?p=9</guid>
		<description><![CDATA[This is a puzzle game and it is freeware. You can freely distribute to your friends. It is mainly developed for children and for the beginners of computer operation. This will help them to improve their mouse movement. But anyone can play it and have fun. It is the first edition of the game. In this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=9&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a puzzle game and it is freeware. You can freely distribute to your friends. It is mainly developed for children and for the beginners of computer operation. This will help them to improve their mouse movement. But anyone can play it and have fun. It is the first edition of the game. In this edition I have included 5 pictures’ puzzle. Hope you will enjoy the game.</p>
<p><a class="alignright" href="http://sajjadhossain.com/2008/02/25/msh-mini-puzzle-game-10/" target="_self">More &gt;&gt;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/msh134.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/msh134.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/msh134.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/msh134.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/msh134.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/msh134.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/msh134.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/msh134.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/msh134.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/msh134.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/msh134.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/msh134.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/msh134.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/msh134.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/msh134.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/msh134.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=msh134.wordpress.com&amp;blog=625148&amp;post=9&amp;subd=msh134&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://msh134.wordpress.com/2008/06/21/msh-mini-puzzle-game-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af08e0fabea3801d2c9923eef9232b53?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">msh134</media:title>
		</media:content>
	</item>
	</channel>
</rss>
