blog site of branko ajzele, senior developer / project manager
Currently Browsing: Zend Framework

Sending emails via Zend_Mail using Google email account

Here is a little (working) code example of how easy it is to send emails via Zend_Mail class using your existing Google email account. <?php   $emailSmtpConf = array( 'auth' => 'login', 'ssl' => 'tls', 'username' => 'email2@domain.com', 'password' => 'mypasshere' );   $transport = new Zend_Mail_Transport_Smtp('smtp.gmail.com', $emailSmtpConf);   $mail = new...

Simple TODO application in Zend Framework and Doctrine ORM

I wrote a little TODO application in Zend Framework (1.8) and Doctrine ORM (1.1). I’m posting it more as a sample (practice) app for Zend and Doctrine newcomers. Entire process of adding, deleting and editing TODO’s is AJAX based. I used jQuery and Jeditable plugin for it. jQuery and Jeditable plugins are provided in this zip-ed archive. You should download Zend Framework and Doctrine ORM yourself, and...

Doctrine ORM and Zend Framework, blank project

Wrote a little article at Inchoo.net site. Here is direct link: Doctrine ORM and Zend Framework, sample project to get you started (with sample database).

Zend Core (LAMP/WAMP stack) overview

For those interested in Zend Core (LAMP/WAMP stack), I wrote (screen-shotted) a little Zend Core overview at Inchoo.net (direct link).

Zend_Auth database based identity persistence

Wrote a new article on Inchoo.net, you can read it here. Basically, I wrote a storage class for those of you who dislike using default Zend_Auth session storage. You can see the class code below. For any extra info, please visit the Inchoo.net article (direct link) or visit the ZF Snippets site (direct link). <?php   class AuthDbStorage implements Zend_Auth_Storage_Interface { private static $_session...

« Previous Entries

Powered by Wordpress | Designed by Elegant Themes