In this blog we will learn how to create crud application in PHP and MySQL. If you are learning web development, you must understand crud operation. Almost every dynamic website or application that you interact with performs crud operation. We also explain what is crud operation and how crud operations are used in web development.
Crud stands for "create, read, update, and delete" in IT contexts. Crud is where you create, read, update, or delete data (objects or records) in a database, file, or other container.
These words are very commonly used in our daily life and we use them when we dealing with computers and web applications. For e.g. when you create an account on a website or an application to use its features, you are filled up a form which asks for your details and you add those details in its database. This adding detail in database is termed as Creating a Record. When you need those details next time, you would view them by fetching or reading them from database. If you want to change some of your details e.g. change your Password or change your Name then you would update that record and if you want to removed your details then you would delete that record.
In this tutorial we will create Student Management System where you can perform CRUD operations i.e. you can add Student, View Student information, Edit Student information, Delete Student information and you can also search Student information by name.
Note: You should have some basic knowledge of PHP, MySQL, and XAMPP Server before you start. In this tutorial, we will start from making a simple login page and move on to storing the usernames and passwords in a MySQL database and then enhancing it with security.
Note: You should have some basic knowledge of PHP, MySQL, and XAMPP Server before you start. In this tutorial, we will start from making a simple login page and move on to storing the usernames and passwords in a MySQL database and then enhancing it with security.
Comments
Post a Comment