PEAR is short form of  PHP Extension and Application Repository.   PEAR is a framework and distribution system for reusable PHP component. Each PEAR code package comprises an independent project under the PEAR umbrella. It has its own development team, version-control and documentation.   A PEAR package is distributed as a gzipped tar file. Each…

Configure dreamweaver for .thtml and .ctp files I prefer to use Dreamweaver to create code all of my websites, mainly because of the code highlighting and the way I organize my sites in separate folders. I realize that there are lots of text editors out there but Dreamweaver is what I’m comfortable with and it… (15 comments)

  The main difference between MyISAM and InnoDB is that InnoDB supports transaction. InnoDB supports some newer features: Transactions, row-level locking, foreign keys. InnoDB is for high volume, high performance.   MyISAM is of course the default table type i’m MySQL Some says MyISAM is fast and some says that InnoDB is ? Let me…