How to Declare Class and Object in PHP
In this tutorial we will see how to create class and object in php. A class is a blue print of an object and an object is a instance of a class. let's see the example to understand better.&nb... Read more
In this tutorial we will see how to create class and object in php. A class is a blue print of an object and an object is a instance of a class. let's see the example to understand better.&nb... Read more
Login is most important feature for our application . Hacker can easily hack your website if you make simple login mechanism in our application . In this tutorial i will show you how to do strong... Read more
Before we create the first program or dynamic web pages or websites in PHP. We should know about the local web server. Because we knew that PHP is server side scripting language. It will be code ex... Read more
There will be times that you will need to pull out data from a web service using PHP’s GET method. In this tutorial I will be demonstrating how you can make a GET Request using cURL. cURL is... Read more
In this tutorial we are going to see how we can php connect to mysql database. PHP 5 and later can work with a MySQL database using: MySQLi extension (the "i" stands for improved)... Read more
PHP 5 introduces abstract classes and methods. Classes defined as abstract cannot be instantiated, and any class that contains at least one abstract method must also be abstract. Methods defined as ab... Read more
In this tutorial i will show you how to insert data into database using php and mysql. In this tutorial we will see how we can insert data to database using procedural, object oriented php and finally... Read more