OOP(Object Oriented Programming) is a programming pattern that uses real-world concepts such as object, inheritance, class, etc. OOP is best ...
PHPMailer is an important and most useful library to send email easily, sometimes the PHP default mail() function does not work properly then...
In this blog we will learn how to upload php website on cpanel with mysql database, this is an important topic mostly developer develop their...
In this blog, we will learn how to make Comment System in PHP & MySQL. On the Blog page we mostly see a comment system on t...
Implode and Explode function of PHP is very useful to convert the array into string and string into an array for example when we collect data...
In this blog, you will learn about how to keep form data in the input after submitting it in PHP. When we use form validation in PHP; we face...
In this blog, you will learn the difference between session destroy and session unset. The session is used to make data accessible across t...
In this blog, you will learn how to keep the checkbox checked after the form submit. When we use validation in the form then there is a need ...
In this blog, you will learn how to keep the select boxes selected after form submission. When we use validation in the form then there is a ...
In this blog, you will learn how to keep the radio button checked after the form submit. When we use validation in the form then there is a n...
In this blog, you will learn how to encode and decode the query string or URL of a page. In PHP we use query string to edit, delete data, o...
Session in PHP is used to store data and make it accessible across all website pages. It is mostly used in login and logout form, multi-step ...