Zend Framework has an impressive library for pagination. Anyone can easily create pagination with some simple lines of code. Lets jumps to the tutorial to create pagination.
1. Model Code:
<?phpclass Users extends Zend_Db_Table{ //set the current table name protected $_name = ‘users’; //set the default primary key of that table protected $_primary = ‘id’; /** * [...]
Smashing Magazine site is one of my favorite site for latest news on IT technology. Today i read the magazine and found really a interesting JavaScript library about date functionality. It do some amazing thing on the fly and the functions are very much user friendly. you can easily understand and remember those function name [...]
In my recent project I have to do something like that:
Enter a TAG, inside a text box
Search in Flickr using the tag.
Show the search result inside my page.
Search in YouTube using the same tag.
Show the search result inside my page.
Play the video in my page without redirecting to the YouTube original site.
To do the following [...]