<?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>h4x3d.com &#187; php age script</title>
	<atom:link href="http://h4x3d.com/tag/php-age-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://h4x3d.com</link>
	<description>online portfolio of Julian Klewes</description>
	<lastBuildDate>Mon, 25 Jul 2011 13:18:32 +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>22 years now</title>
		<link>http://h4x3d.com/22-years-now/</link>
		<comments>http://h4x3d.com/22-years-now/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 04:10:13 +0000</pubDate>
		<dc:creator>jez</dc:creator>
				<category><![CDATA[Dailies]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[calculate your age]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[jez]]></category>
		<category><![CDATA[php age script]]></category>

		<guid isPermaLink="false">http://www.h4x3d.com/22-years-now/</guid>
		<description><![CDATA[Hey all, in case you wondered why the 21 from my short bio turned to 22 overnight&#8230; &#8230; I am now one year older. I really liked the 21, kind of- 22 looks stupid, doesn&#8217;t it? Anyhow I am currently still on the road and will be reading through all the comments and mails from [...]]]></description>
			<content:encoded><![CDATA[<p>Hey all, in case you wondered why the 21 from my short bio turned to <strong>22</strong> overnight&#8230;<br />
&#8230; I am now one year older. I really liked the 21, kind of- <em>22</em> looks stupid, doesn&#8217;t it?</p>
<p>Anyhow I am currently still on the road and will be reading through all the comments and mails from the past 10 days.<br />
Feel free to leave your greetings here, I will be thankfully replying one-by-one.</p>
<p>If you are interested in the age-script code behind the age-calculation I use on this page, here it is (I found it on Google after some research):</p>
<pre><code>
&lt; ?php

  //calculate years of age (input string: YYYY-MM-DD)
  function age($age){
    list($year,$month,$day) = explode(&quot;-&quot;,$age);
    $year_diff  = date(&quot;Y&quot;) - $year;
    $month_diff = date(&quot;m&quot;) - $month;
    $day_diff   = date(&quot;d&quot;) - $day;
    if ($day_diff &lt; 0 || $month_diff
</code></pre>
<p><em>This should return 22 today!</em></p>
<p><em>If you want to output the age AGAIN, <strong>do not</strong> use the full function again, but only:</em></p>
<pre><code>

</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://h4x3d.com/22-years-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

