|
|
|
PHP Tutorial
|
PHP Form Part-5
In the previous parts of this tutorial, we covered form attributes, input type attributes and Submit button attributes. Now, this is the time to use all these properties into one form and gets the information that we are inserting into the textbox.
View Rating |
|
|
PHP Tutorial
|
PHP Class Constant
In this tutorial we will study how to declare a class constant in PHP. Sometimes we need to have constant values in our program which remains same through and through. We do not need to put a '$' sign before the constant to use or to declare it.
View Rating |
|
|
PHP Tutorial
|
PHP Constructor and Destructor
In this current tutorial we will study about constructor and destructor of OOP.Like other OOP based languages PHP also supports constructor method for classes. As any other language's constructor method, in PHP constructor method is called for every object creation.
View Rating |
|
|
PHP Tutorial
|
PHP Class Object
In object oriented programming a class can be an abstract data type, blue print or template. You could consider the name of a class as noun like name of a person, place or thing. For example Fruit is a class, where apple, orange are the object of this class.
View Rating |
|
|
PHP Tutorial
|
PHP MySQLI Prep Statement
In the current tutorial we will study how to create prepared statement in mysql and how to retrieve values using mysqli::prepare, mysqli::prepare - Prepares a SQL query and returns a statement handle to be used for further operations on the statement. The query should consist of a single sql query.
View Rating |
|
|
PHP Tutorial
|
PHP HTML Form
In the current tutorial we will study about PHP and HTML form, we will see how to send HTML . We will combine one html file and PHP file to display data. It is a very common application and you can further modify the code using some validation checking etc.
View Rating |
|
|
PHP Tutorial
|
PHP Function
In this tutorial you will come to know about functions in PHP.With the help of functions we can reduce time and effort, all we need to do is create a function and put the necessary coding into it and we can call this function from anywhere of the program.
View Rating |
|
|
PHP Tutorial
|
PHP For Each Loop Function
In this current tutorial we will study about for-each loop in PHP.In PHP associative array gives us more power to use arrays in more effective way, like we can associate any key with a value. To fetch values from associative array we need to use for each loop.
View Rating |
|
|
PHP Tutorial
|
PHP For Loop Function
In this current php tutorial we will study about for loop using in PHP program. We will study about different formats of for loop, how to initialize the variable inside the loop, condition checking, changing the value of the variable etc. In for loop construct there are three parts...
View Rating |
|
|