January 2010
The Internet is a Mystery
This was an experiment using the new <video> element in HTML5. If you have a crappy browser and this just doesn't work you can use this link directly to the video.
Automatically Update Copyright Year on a Website (For Dummies)
It may seem like a trivial thing to some, but many web designers, novices, and bloggers don't know how to have the copyright year automatically update on their website.
It's true that the year should really only be updated when the content has been updated, but for small business that don't get around to updating their content much. An ancient copyright year can look bad to prospective customers.
To show the current year, just use the following PHP code snippet.
<?php echo date("Y"); ?>
The full thing (assuming the current year is 2010)
<p>© 2001-<?php echo date("Y"); ?> Company Name</p>
© 2001-2010 Company Name
For more information see the PHP documentation about the date function.


Recent comments
17 min 11 sec ago
2 days 12 hours ago
3 days 11 hours ago
5 days 6 min ago
1 week 1 day ago
1 week 2 days ago
2 weeks 1 day ago
2 weeks 5 days ago
3 weeks 1 day ago
4 weeks 3 days ago