Archive for the ‘PHP’ Category

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

File Uploads with PHP Doctrine

Sunday, August 31st, 2008

It’s time to take a look at how file uploads can be integrated into the Doctrine validation and CRUD process. We will have a product in the form of a digital download as an example, it will have a screenshot image that can be maximum 250 pixels wide and high. The download itself will be a zipped file.... Read More

CRUD with PHP Doctrine

Sunday, August 24th, 2008

This piece is building on the prior tutorial, we now have Retrieve, Update and Delete in addition to the Create stuff. The prior tutorial has also been updated since the fromArrayExt method needed some adjustments to manage updating.... Read More