Posts Tagged ‘php’

Random links from my bookmarks

I’d like to share my bookmarks from time to time. I think sometimes random browsing can be very fruitful and sometimes even productive.
This week on my delicious bookmaks, I’d like to share:

Red Hat Magazine | A guide to GNU Screen Very useful to use when needing to run long processes through an SSH connection on [...]

How to install PHP PDO extensions on Debian Lenny

If you need to install PHP PDO extensions on Debian Lenny, its very
simple. This is what I did to get it done:
sudo aptitude install php5 php5-dev php5-cli libmysqlclient15-dev
Then use pecl to get PDO:
sudo pecl install pdo
sudo pecl install pdo_mysql /* in case you want pdo mysql extension */
update: I found out that PDO and mysqli [...]

PHP syntax check as you type with Emacs

For those who have to code in PHP, there’s a nice feature in Emacs that makes your coding horror times less stressing and helps you avoid typos and similar dumb errors.
Emacs 22.1 comes with flymake mode, a nice tool that makes syntax checking while you type out the file by highlighting the lines with errors [...]

PHP 5 OOP implementation quirks

PHP 5 is supposed to be fully object oriented. Yes, it has classes and inheritance and all those things an OOP language is supposed to have. But, is it implemented like most OOP languages?
First of all, I come from a C/C++ background, so there’s where I got all my OOP lessons. Then I started to [...]

Subscribe to RSS Feed