Create jQuery UI autocomplete with PostgreSQL PHP and AJAX

jQuery UI autocomplete allows the user to select an item from the suggestion list based on the typed value.

You can load the suggestion list with and without AJAX.

In this tutorial, I show how you can add jQuery UI autocomplete on your page and load PostgreSQL database data using AJAX and PHP.

Create jQuery UI autocomplete with PostgreSQL PHP and AJAX

Read more

How to add Foreign key in Migration – Laravel

In Laravel, migrations are a way to modify and manage the database schema of the application. A foreign key is a field that is used to establish the relationship between two tables via the primary key (You can also use a non-primary field but not recommended).

In this tutorial, I show how you can add a foreign key constraint while creating a table using migration in the Laravel 10 project.

How to add Foreign key in migration - Laravel

Read more