PHP / MYSQL Tutorials
Simple PHP User Login / SignUp Script Tutorial
In this tutorial we are going to create simple php user login / signup script tutorial using php and mysql as database. In this script, a form will be displayed with two fields, username and password. When user is submitting with valid username and password, then he can access authenticated (my-account) page. Otherwise user again has to fill in the form. Read More
Simple PHP MYSQL Pagination
Pagination can get complicated depending on the size of records in the database, especially when you want to group number of links, display next/previous links etc. In this tutorial we'll focus on creating simple PHP MYSQL pagination. Read More
Prevent MYSQL Injection in PHP (Simple Way)
This will teach a simple method to prevent MYSQL Injection from happening and help you secure your scripts and MySQL statements. Read More
How to Create MYSQL Database Connection File in PHP
Whenever you are working on a project you might need to create a database connection and select a database.
Here i am going to show you a simple way to create your connection file. Read More