PHP OOP – Interfaces

An Interface allows the users to create programs, specifying the public methods that a class must implement, without involving the complexities and details of how the particular methods are implemented.…

0 Comments

What is PHP OOPs?

Object Orientend PHP means convert or treat everything in the form of object, functions and class. Class is like a group. Suppose car is a class. Then Maruti alto is…

0 Comments

Data Update Using PHP

Data can be updated into MySQL tables by executing SQL UPDATE statement through PHP function mysqli_query. Below is a simple example to update records into MyGuests table. To update a record…

0 Comments