PHP: Send mail the simple way

Posted on the 31st of October 2009

One of the fun things of doing web programming, is when you make something that isn’t just visual appealing – but also gives you responds and integrate with other things. In this post I will give a tiny very simple example on how to send a basic text email using PHP.

Read more…

posted in Development, PHP

PHP: Data Access Objects part 1

Posted on the 28th of October 2009

In this post I will cover the use of Data Access Objects (DAO) in PHP. The primary goal by doing so is greater abstraction by seperating the layers as well as covering some of the new techniques of PHP5. It will also come as a great help for you who create massive database web-applications which often result in a lot of duplicate code.

Read more…

posted in Development, PHP