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

Superglobal variable in php

PHP Global Variables - Superglobals Some predefined variables in PHP are "superglobals", which means that they are always accessible, regardless of scope - and you can access them from any…

0 Comments

Google map integration in php

https://developers.google.com/ https://console.cloud.google.com/apis/dashboard https://console.cloud.google.com/apis/credentials?= create crediential and api key AIzaSyC4Jla_Kf9fxV4G_nfgLCgvwRrHoQKRsoo (api key) enable api and services map and javascript api You have to enable all sections one by one. API Key:…

0 Comments

Where and Limit in php

The WHERE Clause is used to filter only those records that are fulfilled by a specific condition given by the user. in other words, the SQL WHERE clause is used to restrict…

0 Comments

Where and Limit Condition in php

The WHERE Clause is used to filter only those records that are fulfilled by a specific condition given by the user. in other words, the SQL WHERE clause is used to restrict…

0 Comments

Last Inserted ID Using PHP

In the PHP MySQL insert chapter you've learnt MySQL automatically generate an unique ID for the AUTO_INCREMENT column each time you insert a new record or row into the table. However,…

0 Comments