|
|
|
PHP Tutorial
|
PHP FORM Part-9
In this part of our tutorial, we will learn about the Do...While loop. Instead of using for or while loop, we can also use do...while loop to move the condition round.
View Rating |
|
|
PHP Tutorial
|
PHP FORM Part-8
The construction of while loop in PHP is lot easier than the for loop function of PHP. We need to evaluate the only one condition at one time. The loop moves round till the condition is true, immediately it comes out when the condition is false.
View Rating |
|
|
PHP Tutorial
|
PHP Change Case
In this current tutorial we will study how to change a string from normal text to all lower case text, to all upper case text and convert every first character to uppercase.
View Rating |
|
|
PHP Tutorial
|
PHP SubString Function
In the current tutorial we will come to know about how to extract In PHP to find out a sub-string from of a string, we use substr() function. The format of this function is as follows string substr ( string $var , int $init [, int $len ] )
View Rating |
|
|
PHP Tutorial
|
PHP FORM Part-7
In this part of this tutorial we are going to learn about the loop. Let's see what is loop and how can we save our tons of time by using loop? So what?s a loop then? A loop is something that moves into circle like a tier of bicycle. In programming, it?s similar to the bicycle tier. Apart from a programming loop, it will move into a circle till the time anyone tell it to stop.
View Rating |
|
|
PHP Tutorial
|
PHP Factory Method
It is very common problem that sometimes we need to change a little in our coding and subsequently we have to change so many places like in other class, function etc. It is called tight coupling. In this case factory pattern helps us a lot. In the current tutorial we will study about factory method and how to implement this in PHP.
View Rating |
|
|
PHP Tutorial
|
PHP Design Patterns
In this tutorial we will study what is a design pattern and in the subsequent pages we will study about various design patterns supported by PHP. A design pattern is like a template which guides us to solve a problem. Design patterns are not finished design that can be transformed directly into code. In Object Oriented based design patterns we can get the interactions and relationships between classes or objects.
View Rating |
|
|
PHP Tutorial
|
PHP Object Iteration
This PHP tutorial will introduce a new feature which has been introduced in PHP 5 called Object iteration. In PHP 5 a new way for objects is introduced to iterate through a list of items. In this technique we generally use foreach statement.
View Rating |
|
|