|
|
|
PHP Tutorial
|
PHP Do While Loop
In the current tutorial you will come to know about Do-While loop function in PHP. The Do-While loop function is another type of loop which runs at least once, since this loop checks the condition after executing the code within.
View Rating |
|
|
PHP Tutorial
|
PHP While Loop
In the current tutorial we will study while loop statement in PHP. In programming language we need to use loops for executing a set of instruction more than one time, there are mainly three types of loops are used namely for, while and do while. Apart from these there are some loops are used in different languages like until, for each etc.
View Rating |
|
|
PHP Tutorial
|
PHP Control Statement
PHP Conditional statements helps us to perform different actions for different decisions. You can use conditional statements to control the flow of the program according to the requirement of the program.
View Rating |
|
|
PHP Tutorial
|
PHP AJAX Dropdown
In this current tutorial we will see how to connect a simple drop down menu and mysql table using php and JavaScript (Ajax as whole) and to display the related data on the screen from the table.
View Rating |
|
|
PHP Tutorial
|
PHP AJAX Introduction
In this current tutorial we will study how to integrate a simple PHP file with AJAX, how to put some AJAX affect in a PHP file. In AJAX JavaScript can directly communicate with the web server with the help of XMLHttpRequest object and without reloading the page, this makes AJAX more attractive and effective.
View Rating |
|
|
PHP Tutorial
|
PHP Sort Array
In this tutorial you will come to know about the php array. Sometimes we need to store data in a single entity called Array, unlike in other language in PHP, an array can store values of different datatype. In the following examples we will learn how to create array, associative array, how to sort values of an array, and how to sort the keys of an associative arrays are given.
View Rating |
|
|
PHP Tutorial
|
PHP Constant
In this tutorial you will come to know about constant in php, . You can store any kind of value which is not intend to change like mathematical constants like value of pi, paths to files etc.
View Rating |
|
|
PHP Tutorial
|
PHP Variable Server
This tutorial will explain the $_SERVER variable of PHP. $_SERVER is an array which is used to display the server and environment related information. It contains information such as headers, paths, and script locations. The entries in this array are created by the server. Various examples will help you to understand the similarity as well as the differences of methods.
View Rating |
|
|
PHP Tutorial
|
PHP Encryption
This tutorial will explain the various ways to encrypt data. When we develop a web-site application then at first we need to develop few preliminary web pages like registration, login etc. It is always been suggested to store the passwords in encrypted form. In the current tutorial we will explain the same. Various examples will help you to understand the similarity as well as the differences of methods.
View Rating |
|
|
PHP Tutorial
|
PHP HTML Form Submit Button
The another part which is important to covered that is HTML Form Submit button. If you are following all the previous parts of the tutorial then our Html form has covered the action and method attribute. So, here we are going to implement these attributes into our form, in which user has entered the information into a text box.
View Rating |
|
|