CSRF Tokens are used to secure forms in PHP, we will generate a random token and this will be stored in the session and this token will be passed through the form. After form submission, CSRF token from the form and the token stored in session will be compared. If both these values match then […]
Continue readingClean URL’s PHP, In this article, you will learn about creating Clean URL’s in PHP with apache htaccess. Here I’m using simple content management system application developed in PHP & MySQL. You can read about the content management system from this article. After completing this article, you can create clean URLs in your projects without […]
Continue readingFile Upload System Script in CodeIgniter, In this tutorial you are going to learn about creating file upload system in CodeIgniter. Previously, I’ve created a crud application in CodeIgniter, You can go through the tutorial. In this file upload system, I’m going to upload a file using CodeIgniter and inserting it into the database. Displaying […]
Continue readingWe have already seen CRUD Application in PHP & MySQL. This is a simple CRUD application in CodeIgniter, if you are new to code igniter and want to learn more this is the place you should start learning. You should know CRUD Operations in Code Igniter, then only you can build any kind of application […]
Continue readingThis is a simple PHP Invoice Script in PHP & MySQL. In this script I’m going to work on these functionalities in our PHP Invoice Script. For creating invoice, we need to have customers and products then invoice generation process. Creating invoices involves different process and it’s bit tricky for beginner developers. Follow these below […]
Continue readingThis is Simple PHP Comment System in PHP & MySQL. We are going to create the PHP comment system with these functionalities. First of all, we are going to create comments database table. Then we will work inserting comments through comment form. Then we will create a few admin pages to moderate comments such as […]
Continue readingThis is a simple php shopping cart application in PHP & MySQL to display products, add to cart functionality in php and checkout features and also removing products from cart. This shopping cart application is built with simple php & mysql code. Building E-Commerce Shopping Cart Website in PHP & MySQL On this page you […]
Continue readingIn this tutorial, you will learn about verifying user email address while user registration. This is continuation part to user registration script. Here, I’m generating a verification code based on username input field value submitted by the user. Because this username is unique. Next sending this verification code through email for that user as a […]
Continue readingThis is simple Login System using Facebook API. You can use this to enable facebook login’s on your website. Before continuing with our Facebook login PHP, you should have facebook developer account. If you don’t have one create it using above link. Your server should support these following system requirements PHP 5.4 or greater The […]
Continue readingThis is simple AJAX CRUD application built with AJAX using PHP & MySQL. This tutorial is an extension to our simple crud application in PHP & MySQL. I’m using that same code for this application and adding ajax features. Below is simple AJAX code snippet to send and receive data from PHP file. I’m sending […]
Continue reading