Send Email With PHP
So, you want to send automated email messages from your PHP application. This can be in direct response to a user's action, such as signing up for your site, or a recurring event at a set time, such as a monthly newsletter. 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
How to Redirect in PHP (Page or URL)
You can use this simple PHP script to redirect a user from the page they entered to a different web page or to different website. This will show you a better way to redirect in PHP. Using this method, they can be seamlessly transferred to the new page without having to click a link to continue. Read More
How to Redirect in HTML (Page or URL)
If you need to redirect your visitors to a new page, this HTML redirect code may be just what you're looking for. I will show you how to redirect in HTML. Read More