<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Count Up &#034;timer&#034;</title>
	<atom:link href="http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/</link>
	<description></description>
	<pubDate>Thu, 20 Nov 2008 23:51:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Crystal</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7024</link>
		<dc:creator>Crystal</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7024</guid>
		<description>I'd really like to see that PHP countup script...</description>
		<content:encoded><![CDATA[<p>I&#039;d really like to see that PHP countup script&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jennifer</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7025</link>
		<dc:creator>Jennifer</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7025</guid>
		<description>Crystal - it's on this site..
&lt;a href="http://www.scriptygoddess.com/archives/001056.php"&gt;here&lt;/a&gt;
</description>
		<content:encoded><![CDATA[<p>Crystal - it&#039;s on this site..<br />
<a href="http://www.scriptygoddess.com/archives/001056.php">here</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maggie</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7022</link>
		<dc:creator>Maggie</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7022</guid>
		<description>Thanks marc!!  :o)</description>
		<content:encoded><![CDATA[<p>Thanks marc!!  :o)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shelli</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7023</link>
		<dc:creator>shelli</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7023</guid>
		<description>small code for countdown til christmas. I think its working properly on my site. 
&#60;!---start of countdown----&#62;
&#60;? 

$day = 25; // Day of the countdown 
$month = 12; // Month of the countdown 
$year = 2002; // Year of the countdown 

// mktime is the marked time, and time() is the current time. 
$target = mktime(0,0,0,$month,$day,$year); 
$diff = $target - time(); 

$days = ($diff - ($diff % 86400)) / 86400; 
$diff = $diff - ($days * 86400); 
$hours = ($diff - ($diff % 3600)) / 3600; 
$diff = $diff - ($hours * 3600); 
$minutes = ($diff - ($diff % 60)) / 60; 
$diff = $diff - ($minutes * 60); 
$seconds = ($diff - ($diff % 1)) / 1; 

printf("There are $days days, $hours hours, $minutes minutes, $seconds seconds until Christmas"); 
?&#62; 

&#60;!---end of countdown &#62;</description>
		<content:encoded><![CDATA[<p>small code for countdown til christmas. I think its working properly on my site.<br />
&lt;!&#8212;start of countdown&#8212;-&gt;<br />
&lt;? </p>
<p>$day = 25; // Day of the countdown<br />
$month = 12; // Month of the countdown<br />
$year = 2002; // Year of the countdown </p>
<p>// mktime is the marked time, and time() is the current time.<br />
$target = mktime(0,0,0,$month,$day,$year);<br />
$diff = $target - time(); </p>
<p>$days = ($diff - ($diff % 86400)) / 86400;<br />
$diff = $diff - ($days * 86400);<br />
$hours = ($diff - ($diff % 3600)) / 3600;<br />
$diff = $diff - ($hours * 3600);<br />
$minutes = ($diff - ($diff % 60)) / 60;<br />
$diff = $diff - ($minutes * 60);<br />
$seconds = ($diff - ($diff % 1)) / 1; </p>
<p>printf(&#034;There are $days days, $hours hours, $minutes minutes, $seconds seconds until Christmas&#034;);<br />
?&gt; </p>
<p>&lt;!&#8212;end of countdown &gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tricia</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7021</link>
		<dc:creator>Tricia</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7021</guid>
		<description>Gaaaaaaahh!!!!!!!! Neato trick, but I hate it!! Completely crashed my browser the first time out, can barely type this comment, every time the count moves, I get the wait cursor...those of us with slower processors (120 mhz here) have a really hard time with things like this. Guess I need to stay away until this scrolls off the screen lol!</description>
		<content:encoded><![CDATA[<p>Gaaaaaaahh!!!!!!!! Neato trick, but I hate it!! Completely crashed my browser the first time out, can barely type this comment, every time the count moves, I get the wait cursor&#8230;those of us with slower processors (120 mhz here) have a really hard time with things like this. Guess I need to stay away until this scrolls off the screen lol!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wKen</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7020</link>
		<dc:creator>wKen</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7020</guid>
		<description>Just what I asked for. Thanks so much.</description>
		<content:encoded><![CDATA[<p>Just what I asked for. Thanks so much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kristine</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7019</link>
		<dc:creator>kristine</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7019</guid>
		<description>&lt;i&gt;long ramble between work projects...&lt;/i&gt;  :)

I read what you said, Lynda, just before I walked downstairs for breakfast, so I thought more about this on the way to work.

I've thought for a long time that i should have a good working knowledge of JavaScript mainly because I should be able to do dHTML.  Because CSS+JavaScript is cool. 

But ya know what else is cool?  There isn't a fancy name (that I know of) for CSS+PHP, but when I think about it, I have done some pretty neato stuff with just a simple stylesheet and a bunch of PHP includes - my &lt;a href="http://love-productions.com/mt/portal.php" target="_blank"&gt;portal&lt;/a&gt; being a prime example.  

So maybe instead of focusing my energies on JavaScript, I should be learning more PHP :)  Not to say that I'll stop with JS - I'm using ImageReady-generated rollovers in a good portion of my graphic sets, and some dHTML scrollers....  but this thought came to me this morning, and I thought i'd share it :)</description>
		<content:encoded><![CDATA[<p><i>long ramble between work projects&#8230;</i>  <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I read what you said, Lynda, just before I walked downstairs for breakfast, so I thought more about this on the way to work.</p>
<p>I&#039;ve thought for a long time that i should have a good working knowledge of JavaScript mainly because I should be able to do dHTML.  Because CSS+JavaScript is cool. </p>
<p>But ya know what else is cool?  There isn&#039;t a fancy name (that I know of) for CSS+PHP, but when I think about it, I have done some pretty neato stuff with just a simple stylesheet and a bunch of PHP includes - my <a href="http://love-productions.com/mt/portal.php" target="_blank">portal</a> being a prime example.  </p>
<p>So maybe instead of focusing my energies on JavaScript, I should be learning more PHP <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Not to say that I&#039;ll stop with JS - I&#039;m using ImageReady-generated rollovers in a good portion of my graphic sets, and some dHTML scrollers&#8230;.  but this thought came to me this morning, and I thought i&#039;d share it <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marc</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7018</link>
		<dc:creator>marc</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7018</guid>
		<description>D'oh - should have read the description of the "clip" attribute:

&lt;i&gt;This parameter specifies the clipping rectangle (viewable area) of the layer, which can be less than the width and height of the content of the layer. &lt;b&gt;If the CLIP attribute is omitted, the clipping rectangle of a layer is the same size as the HTML content of the layer. A layer will expand to contain all of its content by default&lt;/b&gt;&lt;/i&gt;</description>
		<content:encoded><![CDATA[<p>D&#039;oh - should have read the description of the &#034;clip&#034; attribute:</p>
<p><i>This parameter specifies the clipping rectangle (viewable area) of the layer, which can be less than the width and height of the content of the layer. <b>If the CLIP attribute is omitted, the clipping rectangle of a layer is the same size as the HTML content of the layer. A layer will expand to contain all of its content by default</b></i></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lynda</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7017</link>
		<dc:creator>Lynda</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7017</guid>
		<description>I like it on other people's sites, but I have reservations about adding it to mine.  :)   And since I don't like using it on my own site, I don't think I'll ever get inclined enough to LEARN it.</description>
		<content:encoded><![CDATA[<p>I like it on other people&#039;s sites, but I have reservations about adding it to mine.  <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   And since I don&#039;t like using it on my own site, I don&#039;t think I&#039;ll ever get inclined enough to LEARN it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jennifer</title>
		<link>http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7016</link>
		<dc:creator>Jennifer</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2002/05/17/count-up-timer/#comment-7016</guid>
		<description>Javascript can do some pretty cool things. I still like it... 

...however - you can't DEPEND on it. I remember hearing that a scary number of people surf with javascript turned OFF! DOH!

It would be a good learning experience to try and figure out how to do that timer in PHP... Maybe that'll be my diversion this weekend.</description>
		<content:encoded><![CDATA[<p>Javascript can do some pretty cool things. I still like it&#8230; </p>
<p>&#8230;however - you can&#039;t DEPEND on it. I remember hearing that a scary number of people surf with javascript turned OFF! DOH!</p>
<p>It would be a good learning experience to try and figure out how to do that timer in PHP&#8230; Maybe that&#039;ll be my diversion this weekend.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.320 seconds -->
