A web developer's blog. PHP, MySQL, CakePHP, Zend Framework, Wordpress, Code Igniter, Django, Python, CSS, Javascript, jQuery, Knockout.js, and other web development topics.

Tag Archives: zend_framework

How to Build a Facebook App using Zend Framework

Here is a quick tutorial on how to create a Facebook App using Zend Framework. I am just going to link directly to the post. Click Here.

Posted in General | Tagged , | Leave a comment

Problems with Zend_Rest. Any ideas? FIXED!

I am stuck with my problem. I am not sure if it is the way I have things set up or it is something else.This works! $rest = new Zend_Rest_Client(’http://mysite.com/api/emp/method/getById/id/1124921/apikey/1234′); $result = $rest->get(); if($result->status()==’success’) { echo $result->emp_id() .’ ‘. $result->emp_shortname().’ … Continue reading

Posted in General | Tagged , , , | 5 Comments

Zend Framework How To: Handling checkboxes using Zend_Form and jQuery

I am sharing this because it took me a while to figure out how to handle checkboxes using jQuery. First off, let us create a checkbox using Zend_Form. class forms_CoolForm extends Zend_Form { public function __construct($options = NULL) { parent::__construct($options); … Continue reading

Posted in General | Tagged , , | 9 Comments