Become Our Fan on Social Sites!

Facebook Twitter

Google+ RSS YouTube

Saturday 18 October 2014

Android Lollipop Top New Features - Android version 5.0

Google just announced the new release of latest version of Android. The new version named as Android Lollipop or simply Android version 5.0 or Android L.
Android new Os Lollipop 5.0
Android Lollipop 5.0

There are many new features of Android Lollipop that are listed below:

Saturday 10 May 2014

Populate Select Box / Drop Down Dynamically From Database

How to fill select box dynamically from database table. Here is a tutorial of how to fill up HTML drop down menu dynamically from MySQL database table.
Fill or Populate Drop Down or Select Box Dynamically Using Database
Fill Select Box / Drop Down Dynamically

Saturday 12 April 2014

HTML List Example

In HTML, there are two most commonly used list tags <ol> - ordered list and <ul> - unordered list. <ol> - ordered list displays list with decimal numbers or roman numbers or alphabets. <ul> - unordered list displays list with bullet or circle or square symbol.
HTML List Examples
HTML List Examples

HTML Ordered List Example

Ordered list contains order of decimal numbers, roman numbers or alphabet characters. To create ordered list <ol> tag used. Inside <ol> tag <li> - list item tag is used to create list item.
HTML - OL - Ordered List Example
HTML - OL - Ordered List Example

Unordered List Example

Unordered list creates list with symbols like disc/bullet, circle or square. To create unordered list <ul> tag is used. Create list item using <li> tag. In <ul> tag type attribute is used to create symbol like disc , circle or square with list item. If you not specify type attribute then by default is disc/bullet symbol.
HTML UL Unordered List Examples
HTML - UL - Unordered List Example

Description List Example

With description list, we have to use three HTML tags named : <dl> - description list , <dt> - name of description list and <dd> - description of name.
Description List Example
HTML DL-Description List Example

Friday 11 April 2014

HTML Heading Tags

In HTML, <h1> to <h6> tags are used for HTML heading. <h1> tag displays text bigger compare to <h2> and <h2> tag displays text bigger compare to <h3> and so on.
html headings
HTML Heading Tags

Wednesday 2 April 2014

Hack - New Programming Language By Facebook

Facebook just released new programming language named 'Hack'. Hack is a programming language for HHVM (Hip Hop Virtual Machine) that interoperates seamlessly with PHP (Hypertext Preprocessor).
 
Hack New Programming Language
Hack - Programming Language By Facebook


Tuesday 1 April 2014

How To Increase My Internet Speed

Hello friends, here is post of How To Increase Internet Speed. This post contains one trick for to increase Internet speed by 20% and some tips for better Internet experience. This Internet speed increase trick works on all windows systems.

Friday 28 March 2014

Basics of PDO - PHP Data Objects

1. What is PDO?

PDO stands for PHP Data Objects. It is an interface for accessing database in PHP (Hypertext Preprocessor). PDO is a class and built-in available to PHP5. PDO supports multiple database access.

PDO - PHP Data Objects - Introduction