by TurboFlash | Jun 23, 2009 | cURL, PHP
Scenario It has been that situation again when I have spent a whole day trying to research and figure out the solution to a problem that has bugged me. Hopefully this will save researching time for people having the same issue. If you, like me, are trying to get cURL,...
by TurboFlash | Feb 7, 2009 | Zend Framework
Scenario Assuming your application is running smoothly and all of the HeadX (Refers to HeadLink, HeadMeta, HeadScript, HeadStyle and HeadTitle collectively) have been setup. Suddenly, an exception occurs and your ErrorController has been activated. You need to use the...
by TurboFlash | Feb 7, 2009 | PHP
There wasn’t much information available on the Internet by keyword searching on how to do clearing/deleting/removing operations on PHP ArrayObject class so I decided to contribute a small post on this topic and hopefully it will save some time for people...
by TurboFlash | Feb 5, 2009 | Zend Framework
In Part 1, we are able to split the content into parts and apply decorators on them separately. This can be achieved by using the following classes. I guess the render method of each class pretty much sums up what they do so I will not explain further.
by TurboFlash | Feb 5, 2009 | Zend Framework
During form rendering, the decorators are executed in the order added and rendering are done on the same content throughout. If you were to open up Zend/Form.php, you will find inside an elegant render method as follows that summarizes what I’ve mentioned...