<?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>1WiseOwl Blog &#187; &#187; Tips</title>
	<atom:link href="http://www.1wiseowl.com/blog/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.1wiseowl.com/blog</link>
	<description>Trusted ways to help make your first dollar online</description>
	<lastBuildDate>Wed, 20 May 2009 15:52:41 +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>How to code your site to display the current date</title>
		<link>http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/</link>
		<comments>http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 15:35:53 +0000</pubDate>
		<dc:creator>Ken Scovill</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/</guid>
		<description><![CDATA[

I see this question come up quite a bit in the forums, so I thought I would post the answer here for folks to use.
There are a couple of different ways that you can place an autodate script in your website code, with javascript or php coding.You can use a few lines of JavaScript which [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>I see this question come up quite a bit in the forums, so I thought I would post the answer here for folks to use.</p>
<p><span id="msg" class="spnMessageText"><font size="2">There are a couple of different ways that you can place an autodate script in your website code, with javascript or php coding.</font></span><span id="msg" class="spnMessageText"><font size="2">You can use a few lines of JavaScript which picks up the date information from the visitor&#8217;s computer and displays it on the web page. Here&#8217;s the full javascript version if you want to copy it:</font></span><span id="msg" class="spnMessageText"><font size="2">&lt;script language=&#8221;JavaScript&#8221;&gt;<br />
&lt;!&#8211;<br />
var days=new Array(8);<br />
days[1] = &#8220;Sun&#8221;;<br />
days[2] = &#8220;Mon&#8221;;<br />
days[3] = &#8220;Tue&#8221;;<br />
days[4] = &#8220;Wed&#8221;;<br />
days[5] = &#8220;Thu&#8221;;<br />
days[6] = &#8220;Fri&#8221;;<br />
days[7] = &#8220;Sat&#8221;;<br />
var months=new Array(13);<br />
months[1] = &#8220;Jan&#8221;;<br />
months[2] = &#8220;Feb&#8221;;<br />
months[3] = &#8220;Mar&#8221;;<br />
months[4] = &#8220;Apr&#8221;;<br />
months[5] = &#8220;May&#8221;;<br />
months[6] = &#8220;Jun&#8221;;<br />
months[7] = &#8220;Jul&#8221;;<br />
months[8]= &#8220;Aug&#8221;;<br />
months[9] = &#8220;Sep&#8221;;<br />
months[10] = &#8220;Oct&#8221;;<br />
months[11] = &#8220;Nov&#8221;;<br />
months[12] = &#8220;Dec&#8221;;<br />
var dateObj=new Date()<br />
var wday=days[dateObj.getDay() + 1]<br />
var lmonth=months[dateObj.getMonth() + 1]<br />
var date=dateObj.getDate()<br />
var year=dateObj.getYear()<br />
if (year &gt;= 100 &amp;&amp; year &lt;= 1999)<br />
{year=year + 1900}<br />
else<br />
{year=year}<br />
document.write(wday + &#8220;, &#8221; + date+ &#8221; &#8221; + lmonth + &#8221; &#8221; + year)<br />
// &#8211;&gt;<br />
&lt;/script&gt;</p>
<p>If you want to put in the full word for &#8220;Mon&#8221; or &#8220;Jan&#8221;, you just need to change the wording in the script. Just place this script in where the &#8216;date&#8217; would normally show up.</p>
<p></font></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.1wiseowl.com/blog/tips/how-to-code-your-site-to-display-the-current-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

