featured articles
“normal web devel...
A Perfect IDE
An IDE is a one of the best part for the developers. If you are not...
recent from category one
ZEND CERTIFICATION BOOKS
This two books are for Zend Certification. it includes Study guide and Practice question. this books are very helpful for ZCE.
I collected this book. if anyone need this plz contact me. i will try to give u that.
with regard
masud
recent from category two
Browser Detection with Javascript: IE, FF, Opera
Last night i was working with a JavaScript program. For this reason i have to check what is my current browser for which i have to run a separate JavaScript function. But i was try couple of code snippet from web but none of the working exactly what i want. i have to the browser with their current...
recent from category three
Starting Project with Code Igniter [For beginners] Part 01
Framework
System
System folder contains all the framework files including framework build class libraries, fonts, database configuration for your system, languages files, helper classes etc.
Application
Projects basis works will place inside this folder. Projects controller class will be placed inside...
recent from category four
Geoname data for country/state/city list generation
Geonames.org is one of the renowned service. Few days ago i need to make a tool for one of my project. The purpose is as follows:
Select a country from a country dropdown.
load state/province/Division for that country in a dropdown.
load city/location information based on the country...
Posted by Masud on 02 18th, 2010 |
1 Comment
Geoname data for country/state/city list generation
Geonames.org is one of the renowned service. Few days ago i need to make a tool for one of my project. The purpose is as follows:
Select a country from a country dropdown.
load state/province/Division for that country in a dropdown.
load city/location information based on the country and state that selected earlier.
To do so, i search several service and found this service very effective....
Posted by Masud on 02 21st, 2009 |
1 Comment
SEVEN THINGS, You may not know about me…
I just read Emran Hasan and Hasin’s blog about this. Here goes my seven things:
I am very lazy
I can’t maintain routine life. i like to do all the things that i feel.
I hate programming before 2005 and always want to be a Communication Engineer. But unfortunately i become a programmer in 2006. Now i want to be Successful in this programming arena
I am a big fan of test cricket. wasim akram,...
Posted by Masud on 02 15th, 2009 |
13 Comments
“normal web developer” to “stylish web developer” - 01
A Perfect IDE
An IDE is a one of the best part for the developers. If you are not relax during writing code then you can’t write good code. An IDE can help you most in that case. Here are some list of IDE’s which can help you.
NuSphere phpEd – a complete IDE for PHP developers.
PHP Designer 2008 - The best PHP Editor and PHP IDE for ALL your PHP and Web Development
Zend Studio - The...
Posted by Masud on 02 6th, 2009 |
1 Comment
Browser Detection with Javascript: IE, FF, Opera
Last night i was working with a JavaScript program. For this reason i have to check what is my current browser for which i have to run a separate JavaScript function. But i was try couple of code snippet from web but none of the working exactly what i want. i have to the browser with their current version. Hence i found a code snippet at JavaScript kit. Really this is what exactly one. but it...
Posted by Masud on 10 2nd, 2008 |
2 Comments
Zend Framework: How to create Pagination using Zend Paginator class
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'; /** * Create...