Displaying Success & Error Messages in a neat and easy to read manner is the main part in adding PHP Form Validations. After seeing these error messages, the user will finally come to know the information that he/she should submit. In this tutorial, we will see, how to display success & error messages in PHP. […]
Continue readingPHP Form validations are very important while submitting/accepting data through forms, without these validations’ users can submit any kind of information through the form. And if the user submits invalid data, then the data won’t be useful. For not to get the obsolete data, we should add Form Validations. Once you learn how to add […]
Continue readingAs a Developer, you should work with Forms on a daily basis with every project. Here in this series of articles (YouTube Video Series), you are going to learn all the things that you should know about PHP Forms. I’ve covered most of the things that are necessary for working with forms in PHP. Even […]
Continue readingThis is Secure Login Script System, which allows you to login with username and email simultaneiously. And creates the session with security measures. And one more important feature about this Login system is, if the logged in user tries to access login page or register page he will be redirected to dashboard or members area […]
Continue readingCreating User Authentication System in CodeIgniter that is User Registration and Login features, you will learn about how we can create these features in CodeIgniter. First, we will start off with creating a database table, then set up controllers views and routes. After that I’ll add plain HTML forms to register view and login view, […]
Continue readingDevelop Content Management System in PHP, in this tutorial you will learn about how to create a content management system using PHP & MySQL from scratch. There are two main things in this content management system frontend and backend. Front end for displaying content and backend for managing content. We will start with backend by […]
Continue readingThis is simple CRUD Application in OOP PHP (Object Oriented PHP). In this tutorial, you will learn about CRUD operations in OOP PHP. CRUD stands for create, read, update and delete. Create means inserting data into the database using INSERT SQL statement. Read means reading data from database using SELECT SQL statement. Update means updating […]
Continue readingDevelop Secure Applications with PHP PDO, Advantages of choosing PHP PDO is their support for prepared statements which offer important security features. A prepared statement is a template for an SQL query that incorporates value from user input. The prepared statement contains a placeholder for each value that’s stored in a variable. This not only […]
Continue readingPHP security is the more concerned topic in web application security, In this article, you will learn some techniques that you can use in your applications to fix security issues and improve the overall security of PHP web applications. 1. Input Validation All problems start here If you are not validating & sanitizing user submitted […]
Continue readingUsing PHP PDO is recommended because it’s more secure and protects from SQL injections. PHP PDO CRUD application, previously we have seen CRUD application in PHP & MySQL. Here in this article, I’m going to build CRUD application with PHP Data Objects. Before continuing with creating CRUD application in PDO, you need to know basics […]
Continue reading