PHP Mail

Email is an integral part of any project or business. Nowadays, being quick and responsive is a huge value, especially when it comes to answering your customers. In a lot of cases, responsiveness and well-planned communication are the deciding factors that users take into consideration when making purchases. We will learn about php mail() function. … Continue reading PHP Mail

PHP Math Functions

PHP provides a number of built-in math functions which help in performing several operations while dealing with mathematical data. It has nice support for mathematical processing. No installation is required to use these functions. Some examples of mathematical functions in PHP are as follows: FunctionDescriptionabs()Returns the absolute value of a numberacos()Returns the arccosine of a … Continue reading PHP Math Functions

PHP Filter

What is PHP Filter PHP Filter is used to validate (check the valid format) and sanitize (remove unwanted data) the input data received from an external source. The external source can be a user input, output of a query evaluation, web service data, server variables, cookies, etc. There are two kinds of filters: 1.Validating filters: … Continue reading PHP Filter

OOP Interview Questions and Answers

What is Object Oriented Programming? Object Oriented Programming (OOP) is a programming paradigm where the complete software operates as a bunch of objects talking to each other. An object is a collection of data and methods that operate on its data. Why OOP? The main advantage of OOP is better manageable code that covers following. … Continue reading OOP Interview Questions and Answers