Here is some quick example how to use zend framework rest client and google maps geocoder API together. 1 2 3 4 5 $client = new Zend_Rest_Client(’http://maps.googleapis.com/maps/api/geocode/xml’); $client->address(’Cesta Andreja Bitenca 68, 1000 Ljubljana’); $client->sensor(’false’); $res = $client->get(); print_r($res);$client = new Zend_Rest_Client(‘http://maps.googleapis.com/maps/api/geocode/xml’); $client->address(‘Cesta Andreja Bitenca 68, 1000 Ljubljana’); $client->sensor(‘false’); $res = $client->get(); print_r($res);
Category: Zend Framework
Zend Framework & ExtJS Grid – part 1
The old way to make a grid was very time consuming. Basically it is just copy paste but still there is a lot to rewrite. You have to take care of the actions, pager and maybe a filter. So i tried ext js grid. Since extjs renders the grid alone and looks a lot better… Continue reading Zend Framework & ExtJS Grid – part 1
Getting lazy with frameworks (ZEND)
For my new huge project, i did some research so I would work less. I started with cake php and after one week learning i decided that it is no good for me. My last project is not a web site and cakephp looks like it is done for making blogs and news pages. Then… Continue reading Getting lazy with frameworks (ZEND)