Decidí emprender la programación de una aplicación web que maneje una librería de música, un proyecto relativamente simple, para enseñarme varias cosas:
PostGreSQL
PostGreSQL con PHP
Subversion para control de versiones
Trac para bug tracking
Creación de aplicaciones con CakePHP y otros frameworks
Aplicación de jQuery a esos frameworks, especialmente desarrollando métodos Ajax
Creación de plugins para CakePHP y otros frameworks
Es decir, [...]
adriano posted this in
Uncategorized on
08/02/2010
This can be a series of tutorials. I hope it will be. The credit for the initiative goes to the blog post “The Beginner Pattern“.
Since PHP 4.0.6, PHP has included two powerful functions to process arrays: array_map and array_filter. These can be a bit hard to wrap your head around at first, for they flip the [...]
adriano posted this in
Uncategorized on
08/02/2010
PDO (PHP Data Objects) is a PHP extension that grants you generic access to databases in an object-oriented fashion. Perusing stackoverflow I found an excellent tutorial on the subject written by Paul DuBois at kitebird.com.
Using PDO, you’ll stop embedding calls to mysql_ functions across your code, your scripts will improve, your breath will smell mintier, swallows [...]