Difference between require() and require_once()?
The require() and require_once() functions perform same work. Both functions will include and evaluates the specific file while executing the code. if include() is not…
The require() and require_once() functions perform same work. Both functions will include and evaluates the specific file while executing the code. if include() is not…
There are some certain ways to send your information or data to the PHP page- Using Form Methods – Get & Post Using Cookies &…
String functions are the most important functions frequently used in PHP. String is the sequence of characters, like “Let’s learn String functions”. There is no…
OOP is intimidating to a lot of developers because it introduces new syntax and, at a glance, appears to be far more complex than simple…
We need to create an HTML form that allows you to choose the file to be uploaded. Note: please make sure you have form method…
Almost in every web application sending automated email by system is the common requirement. So, it’s very common and important part that must be known…
The basic task of both cookies and sessions is to store visitor data so that it can be accessed by every page on a website.…
The Include() and require() statements are used to insert codes written in other files, in the flow of  execution. The main of using include and…
Ajax (Asynchronous Java script And XML)  Introduction In Jesse Garrett’s original article that coined the term, it was AJAX. The “X” in AJAX really stands for XML…
Numeric Data Types: INT (Integer): Int data type represents an integer of normal size. So simply it can used to store numeric value. There are…