jtGraphic

Personal blog of James Thompson: Ramblings of an Internet addict...

Tag: date

Scheduling Posts in Wordpress 2.9.x

The easiest way to release content on your blog is to write it all at once and slow release it over time.  This also works really well when you’re on vacation or otherwise indisposed.

Write your post like you normally would, but hitting the “New Post” button in the top right corner of your dashboard.
Look on [...]

PHP Function Friday: date

I think the date function is extremely useful.  It gives your programs an awareness of WHEN they are.  You can do some pretty cool things like calculate this date from that date, make a calendar, or store information about when an action was taken.
Function and Syntax
string date(string $format [, int $timestamp ])
Manual Entry
http://php.net/manual/en/function.date.php
Notes [...]

PHP Function Friday: function

So, I’ve decided to start including a new post every Friday – kind of as a discipline thing. I’m going to write a post on a PHP function every Friday. I’m not just going to regurgitate the post in the official PHP manual, but I’m going to list my experience with it along [...]