

`name` VARCHAR(100) COLLATE utf8mb4_unicode_ci NOT NULL, `id` INT COLLATE utf8mb4_unicode_ci NOT NULL AUTO_INCREMENT, CREATE TABLE `users` (įor MySQL version 8, you can use the following table structure: CREATE TABLE `users` ( You may use the following table structure for MySQL version below 8. Create database roytuts in MySQL server if it does not exist already. MySQL TableĬreate a table called users under roytuts database in MySQL server. Now extract your Codeigniter framework zip folder inside the project directory. You may also like to read Python, Flask Multi-step registration form with MySQL, jQuery PrerequisitesĪpache 2.4 ( Optional), PHP 7.0.15 – 7.4.27, Codeigniter 3.1.10 – 3.1.1, MySQL 5.x – 8.x, jQuery 1.10.2 – 3.6.0 Project DirectoryĬreate a project directory called codeIgniter-multi-step-registration under your /htdocs or anywhere (if you are not using external server to run your app) in the physical drive in your system.
#Codeigniter wizard how to#
I am going to explain how to convert very long form into multi-step registration form using Codeigniter, MySQL and jQuery. This type of multistep registration form always improves usability on web page comparing to very long form. So the best solution is to break the form into smaller logical section and present it into a multi-step registration form. Sometimes you may need to capture lots of user details during registration process and as a result you get a long form on web page. Here I will insert data into database using multi-step registration step. Here you will see example on multi-step registration form using Codeigniter 3, MySQL, jQuery.
