It sounds like a simple task - retrieve the result from a join SQL query. Unusually you can even find documentation on the official Zend Framework site explaining how to put together a query that will return the results from a JOIN query. Unfortunately when it actually comes to putting theory into practice any Zend newcomer can run into several problems. (more…)
Posts Tagged ‘Zend’
Home »
Tags » Zend
17Feb
2009
2009
Zend Framework Decorators - Labels and Checkboxes
Very often it is the smallest things that annoy us the most. It took me a while to figure out why the placement parameter was not changing anything. I started of with the following:
'decorators' => array(
array('Label'),
array('ViewHelper')
)
Categories:
28Dec
2008
2008
Using Zend_Mail and Google SMTP to send emails
You can set this globally, for example in your bootstrap.php file:
$tr = new Zend_Mail_Transport_Smtp('smtp.gmail.com', array(
'auth' => 'login',
'username' => 'YOUR_USERNAME@gmail.com',
'password' => 'YOUR_PASSWORD',
'ssl' => 'ssl',
'port' => 465)
);
Zend_Mail::setDefaultTransport($tr);

