Automatic Update to WordPress 2.7.1…
I like WordPress. It does all of it’s own updating itself – I just have to hit a button.
And make sure my permissions are set correctly.
Thanks WordPress.
The personal blog of a Toronto based software developer, musician, sound designer, and theatre enthusiast.
Archive for the ‘Uncategorized’ Category.
I like WordPress. It does all of it’s own updating itself – I just have to hit a button.
And make sure my permissions are set correctly.
Thanks WordPress.
I’ve been programming in PHP for a few years now, and after being exposed to MVC through Ruby on Rails back in 2007, I came to realize that I liked the idea of keeping the presentation of data separate from the manipulation of data.
So I built a View class. Download View Class
Usage:
$view = new View('views/main_page.tpl', array(
'some_var' => 'This will be assigned to $some_var in the view'));
$view->render();
And like that, data presentation is separated from data manipulation.
Piece of cake.