<?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>A Guide to Technology &#187; Web Development</title>
	<atom:link href="http://www.webnol.org/category/web-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webnol.org</link>
	<description></description>
	<lastBuildDate>Fri, 06 Aug 2010 14:22:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Calculating Difference Between Two Dates Using PHP</title>
		<link>http://www.webnol.org/calculating-difference-between-two-dates-using-php/</link>
		<comments>http://www.webnol.org/calculating-difference-between-two-dates-using-php/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 17:46:53 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Programing]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.webnol.org/?p=220</guid>
		<description><![CDATA[Calculation of difference between 2 dates is not an easy task so I m writing a function which do this job easily. This function is useful for calculate age of person by DOB (date of birth) or calculating age of record in databse

function dateDiff($endDate, $beginDate)
{
$bdate=explode(“/”, $beginDate);
$eedate=explode(“/”, $endDate);
$start_date=gregoriantojd($bdate[0], $bdate[1], $bdate[2]);
$end_date=gregoriantojd($edate[0], $edate[1], $edate[2]);
return $end_date - $start_date;
}
Note: Date [...]]]></description>
		<wfw:commentRss>http://www.webnol.org/calculating-difference-between-two-dates-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Decimal into Alphanumeric using php</title>
		<link>http://www.webnol.org/convert-decimal-into-alphanumeric-using-php/</link>
		<comments>http://www.webnol.org/convert-decimal-into-alphanumeric-using-php/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 15:13:20 +0000</pubDate>
		<dc:creator>sunny</dc:creator>
				<category><![CDATA[Programing]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.webnol.org/?p=215</guid>
		<description><![CDATA[A Problem occurred when I was writing a script for shortUrl redirection. That using 5 Digit decimal numbers can cover only 105=100000 Urls but 5 digit alphanumeric (case sensitive) numbers are able to cover 622=916132832. So it is very helpful to keep Urls short.
Example

Using      Decimal http://surl.bz/0 to http://surl.bz/99999 only 100000 [...]]]></description>
		<wfw:commentRss>http://www.webnol.org/convert-decimal-into-alphanumeric-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
