Archive for the ‘PHP’ Category

Smarty + Doctrine = Smoc

Wednesday, February 18th, 2009

Update: Since the below piece was written I’ve ported the little framework to H2O instead, H2O is a cleaner alternative to Smarty.... Read More

Simple Doctrine model to MySQL script

Monday, February 16th, 2009

I’m a bit rusty, after scouring the Doctrine manual for the import functions I found a script of my own that I totally had forgotten:... Read More

From Excel XLS to CSV with PHP-ExcelReader

Sunday, November 2nd, 2008

I just had to convert a lot of xls files to csv, too many to even contemplating doing it manually. I started looking for a solution and found a positive evaluation of PHP-ExcelReader.... Read More

PHP Class for working with Directories and Files

Saturday, November 1st, 2008

The code documented here was originally posted as a single page as is. It just didn’t feel right, it felt lazy and not what this site is about, which is some kind of commentary or notes even though it’s not always extensive, so here you are, the verbose version.... Read More

PHP Doctrine - adding automatic, simple CRUD

Sunday, October 26th, 2008

I just found myself wishing for automatic CRUD, for quick and simple administrative tasks, as it turned out a very easy thing to add. The first thing we have to do is move the label selection from having to be explicitly declared in the insert/update form - like we are doing now - to the model:... Read More

Earnings report 2007 - 2008

Wednesday, October 22nd, 2008

I just realized that the blog just passed the one year mark. It’s been a blast!... Read More

DQL recipes

Tuesday, September 23rd, 2008

I had to start covering various Doctrine snippets for future reference. This post will be updated with more of them as they appear.... Read More

Trackbacks with Google Blog Search and Zend Feed

Saturday, September 13th, 2008

I’ve wanted to do automatic trackbacking by linking to posts that are linking to any given article of mine, for quite some time now.... Read More

URL - from YouTube insert HTML - with preg_match

Friday, September 12th, 2008

A friend just needed help, he wants people to be able to put the YouTube insert code into a database. However it seems that there are some display related things in there he can live without that people might mess with and of course we don’t want that.... Read More

Pagination with PHP Doctrine

Wednesday, September 3rd, 2008

Things are starting to become more and more feature complete. Let’s look at how to implement general search and pagination. In the Product model:... Read More