Become Our Fan on Social Sites!

Facebook Twitter

Google+ RSS YouTube

Tuesday, 25 March 2014

PHP Database Connection With MySQL

Hello friends, this article is for php beginners who want to know how to connect to MySQL database using PHP code. Here is your answer, I am explaining you step by step tutorial of how to make connection to MySQL database in PHP (Hypertext Preprocessor) language. MySQL - PHP Database Connectivity ...

Monday, 24 March 2014

Cricket Live Scores ~ Live Cricket Score Board

Are you looking for cricket live scores? Following are list of live cricket score update websites. Cricket Sites In India, Cricket Websites List, Live Score Board, Cricket Live News Live Cricket Score Update Website List ...

Saturday, 22 March 2014

How To Create Message Box In .Net

Message Box is used to inform something to the user. Message box interrupts user and user must have to answer message box to process further. Most of time this type of message box you find in error message, warning message, etc. In this tutorial, I am explaining about C#.Net message box. To create message box in C#.Net, you have to include...

Wednesday, 19 March 2014

JavaScript Dialog Boxes

Here is a tutorial post of dialog boxes / popup boxes in JavaScript. In JavaScript, there are three dialog / popup boxes. These three different types of boxes listed below: Alert Dialog Box Confirm Dialog Box Prompt Dialog Box JavaScript Dialog Boxes Now we will see these three dialog boxes one by one: 1. Alert Dialog Box ...

Tuesday, 18 March 2014

Types of CSS

Hello friends, here is a tutorial of types of CSS. CSS stands for Cascading Style Sheet. CSS is used in web development for to style webpage. Using CSS, you can change font-size, font-family, text color, background color, etc. Types of Cascading Style Sheet There are 3 (three) types of Cascading Style Sheet. There are few advantages...

Sunday, 16 March 2014

HTML Image Tag Example

Hello friends, this tutorial is about HTML <img> (image) tag. To display/show image in the webpage then we have to use <img> tag of HTML. Here you can find all required attributes of <img> tag and some tips for image optimization. HTML Image Tag Example Syntax: <img src="" alt="" /> "src" and "alt"...

Saturday, 15 March 2014

CodeIgniter Table Class Example

We can create table using HTML table tag. But in CodeIgniter, there is a Table Class to create table. It is not mandatory to use this Table Class, we can use simple HTML table tag also. CodeIgniter Table Class Example This Table Class provides facility of creating table from arrays or database query result set. 1. How...

Thursday, 13 March 2014

CodeIgniter Reserved Names

This post is about Reserved Names in CodeIgniter. Reserved names are names that are used in internal operations and developer can not use that names. Reserved Names CodeIgniter In CodeIgniter, some controller names, function names, variable names, and constant names are reserved, so developer/programmer can not use that names. ...

Tuesday, 11 March 2014

How To Create Session In CodeIgniter

1. What is Session? Session maintains a user's state and tracks user's activity while user browse the website. We have to maintain session manually because HTTP is a stateless protocol. Session Creation In CodeIgniter 2. Session Initialization To avail session in all pages of website then first we have to initialize Session...

Saturday, 8 March 2014

How To Create Form In HTML

Hello friends here is a descriptive tutorial about form creation in HTML. To create form in HTML <form> tag is used. Forms are useful in creation of student registration, employee registration, login, etc. Create HTML Form ...