Monthly Archives: July 2010

Zend Framework: Cache Database Table Schemes

If you’re familiar with Zend Framework, you should know how to turn your database tables into models. Simply extend the Zend_Db_Table class. This is the very general example. There are lots of variations how to name the model classes and … Continue reading

Posted in micro tutorial, PHP, zend framework | Tagged , , , , , , | Leave a comment

Zend_Mail with GMail

You know how to setup Zend_Mail with SMTP, but you don’t know how to set it up with GMail! Here’s how to do it. Just follow the instructions $mailTransport = new Zend_Mail_Transport_Smtp(’smtp.gmail.com’, array( ‘auth’ => ‘login’, ‘username’ => ‘xxxxxx@gmail.com’, ‘password’ … Continue reading

Posted in micro tutorial, PHP, zend framework | Tagged , , , , , , , , , | Leave a comment

Send Html Mails with Zend_Mail

Typically you’d never like to send a non-html formatted mail from your web system. It’s ugly and it’s difficult to read. Instead of sending pure text, you’d like to add some images and styles. The way you can do it … Continue reading

Posted in micro tutorial, PHP, zend framework | Tagged , , , , , , , , | Leave a comment

Friday Algorithms: A Data Structure: JavaScript Stack

Algorithms and Data Structures Instead of writing about “pure” algorithms this time I’ve decided to write about data structures and to start with a stack implementation in JavaScript. However algorithms and data structures live together since the very beginning of … Continue reading

Posted in algorithms, javascript, micro tutorial, web development | Tagged , , , , , , , , , , , , , | Leave a comment

Media RSS and ZF – Part 2

Here’s the promised chunk of code making the most simple bridge between Zend Framework and Media RSS. Step 1 Just add a simple action in a controller: class IndexController extends Zend_Controller_Action { public function indexAction() { $this->getResponse()->setHeader(’Content-Type’, ‘application/xml’); $this->view->somevar = … Continue reading

Posted in PHP, zend framework | Tagged , , , , , , , , , , , , | Leave a comment