Learn how to build a CRUD application with Python/Flask

Creating a CRUD (Create, Read, Update, Delete) application in Flask is a common task for web developers. In this tutorial, we’ll build a simple CRUD app for managing a list of tasks. In the next tutorial, we’ll deploy it on the cloud. So stay tuned for the next one too! We’ll use Flask for the […]

Learn how to build a CRUD application with PHP and MySQL

In this example we will create a simple address book application to understand CRUD operations in PHP and MySQL. As you may already know that CRUD stands for Create, Retrieve, Update and Delete operations. We can use these operations to add, manipulate and delete database records. We will follow following steps to complete our application: […]