<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Code The World — Number of days between now and a day in the future]]></title>
		<link>https://codetheworld.com/viewtopic.php?id=12</link>
		<atom:link href="https://codetheworld.com/extern.php?action=feed&amp;tid=12&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Number of days between now and a day in the future.]]></description>
		<lastBuildDate>Sun, 15 Jun 2008 16:16:01 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Number of days between now and a day in the future]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=160#p160</link>
			<description><![CDATA[<p>thanks, this will come in handy no doubt</p>]]></description>
			<author><![CDATA[null@example.com (Hornet)]]></author>
			<pubDate>Sun, 15 Jun 2008 16:16:01 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=160#p160</guid>
		</item>
		<item>
			<title><![CDATA[Re: Number of days between now and a day in the future]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=33#p33</link>
			<description><![CDATA[<p>Thanks a ton, I couldn&#039;t find any good examples anywhere else. Thanks.</p>]]></description>
			<author><![CDATA[null@example.com (Porkey)]]></author>
			<pubDate>Sun, 15 Jun 2008 03:10:42 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=33#p33</guid>
		</item>
		<item>
			<title><![CDATA[Number of days between now and a day in the future]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=12#p12</link>
			<description><![CDATA[<p>Description<br />This will calculate and show how many days there are from the current date to a date in the future that you define.</p><p>The code<br /></p><div class="codebox"><pre><code>&lt;?php

// Change this to the day in the future
$day = 10;

// Change this to the month in the future
$month = 12;

// Change this to the year in the future
$year = 2003;

// You do not need to edit below this line

// $days is the number of days between now and the date in the future
$days = (int)((mktime (0,0,0,$month,$day,$year) - time(void))/86400);

echo &quot;There are $days days until $day/$month/$year&quot;;

?&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Casper)]]></author>
			<pubDate>Sun, 15 Jun 2008 01:10:29 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=12#p12</guid>
		</item>
	</channel>
</rss>
