Skip to main content

Build Password Reset System with PHP & MySQL

Password reset is a common feature web applications to allow users to reset their password if users forget their password. The password reset is allowed with username or email address to send password reset link to users email id to save their new password.

So if you’re thinking about implementing password reset with PHP in your application, then you’re here at right place. In this tutorial you will learn how to implement password reset or forget password functionality using PHP and MySQL. You can also develop complete User Management System with PHP & MySQL to manage users.

We will cover this tutorial step by step with live demo. You will also be able to download complete source code of live demo.

(more…)

Advanced Ajax Pagination with PHP and MySQL

Pagination is an important feature of web applications to display huge data in chunks of pages instead of displaying all records. With pagination, we divide total records into chunks of pages with small number of record. We mostly loads pagination pages on each page request with same page reload. But now the ajax pagination is more improved and more user friendly which allow users to load next or previous pages without reloading page.

So if you’re a PHP developer and thinking to implement advanced ajax pagination with PHP, then you’re here at right place. in this tutorial you will learn how to implement ajax pagination with PHP and MySQL. In this tutorial we will use simple bootstrap pagination plugin to create advance pagination.

We will cover this tutorial in easy steps to live example to create advanced ajax pagination with PHP and MySQL. We will also allow you to download complete source code of live example.

(more…)

Exporting Data to Excel using PHP & MySQL

Export Data to Excel is a common feature of web applications to allow dynamic data export to Excel file to save locally for further use. If you’re a PHP developer and thinking to implement data export to excel, then you’re here at right place. You will learn here how to implement data export to excel using PHP & MySQL.

In our previous tutorial you have learned how to export data to excel in CodeIgniter, now in this tutorial we will explain how to export data to excel with PHP and MySQL.

We will cover this tutorial step by step to create live demo to implement data export to excel with PHP and MySQL. You can also download complete source code of live.

(more…)

Export Data to Excel in CodeIgniter with Example

In our previous Python tutorial, we have explained how to Create RESTful API using CodeIgniter. In this tutorial, we will explain how to Export Data to Excel using CodeIgniter with Example.

Data Export to Excel (xls or xlsx) format is a feature of web applications to allow users to save data from MySQL table into Excel format for further use.

If you’re PHP developer and looking for solution to implement data export to excel in CodeIgniter, then you’re here at right place.

In this post you will learn how to export dynamic data into Excel format using CodeIgniter. We will use PHP library PhpSpreadsheet to create and save dynamic Excel file to export and save data.

(more…)

Ajax CRUD Operation in CodeIgniter with Example

CRUD (Create, Read, Update, Delete) is a common part of any dynamic web application. We generally add new records into database or display records from database and then perform further operations like update, delete on same records.

So if you’re developing web applications using CodeIgniter then you have certainly handled CRUD operations in your application. But its not very user friendly if you have handled this with pure CodeIgniter because it loads page every time when you perform actions.

So here in this tutorial, we have handled CRUD operations using Ajax with CodeIgniter. You would also like to checkout tutorial about Multiple Image Upload in CodeIgniter with example.

We will cover this tutorial in easy steps with live example with ajax CRUD operations in CodeIgniter.

So let’s start.

ajax CRUD operations in CodeIgniter (more…)

How to Create SEO Friendly URL in WordPress

In our previous article, we have explained how to Start a WordPress Blog. In this article, we have explained how to Create SEO Friendly URL in WordPress website.

Search engine optimization (SEO) is an essential part of any website to increase traffic. The SEO has many factors and URL structure is one of the main factor. The short and human readable URLs are important for any website to increase search engine ranking and also easy to remember.

If you’re running website on WordPress or just started a WordPress blog, then it’s very simple to create SEO friendly URLs in WordPress.

Also, read:

So here in this article, you will learn how to create SEO friendly URLs structure in WordPress. You will also learn
what is SEO URL is and how to create custom SEO URLs in WordPress.

(more…)