This is a simple PHP CRUD application developed by Nikhil. It allows you to perform basic Create, Read, Update, and Delete operations on a database.
- Create: Add new records to the database.
- Read: View records from the database.
- Update: Edit and update existing records.
- Delete: Remove records from the database.
To run this application, you need the following:
- Xampp (or any other similar software bundle that includes PHP, MySQL, and a web server)
- PHP (version 7 or higher)
- MySQL (or any other supported database)
- Internet browser
- Clone or download the repository to your local machine.
- Import the provided database schema (
.sql
file) into your MySQL database. - Configure the database connection settings in the
config.php
file. - Start Xampp and ensure that Apache and MySQL services are running.
- Place the project folder in the
htdocs
directory of your Xampp installation. - Open your web browser and navigate to
http://localhost/[project_folder_name]/index.php
.
- Launch the application in your web browser.
- You will be presented with a user interface to interact with the database.
- Use the provided forms and buttons to create, read, update, and delete records.
- Follow the on-screen instructions to perform the desired operations.
- Refresh the page to see the updated data in the database.
index.php
: The main entry point of the application.config.php
: Contains the configuration settings for the database connection.database.sql
: SQL file containing the database schema.assets/
: Directory for storing CSS stylesheets, JavaScript files, and other assets.templates/
: Directory for storing HTML templates for different pages.src/
: Directory for PHP source code files, including the CRUD operations logic.functions.php
: Helper functions and utility methods used throughout the application.
Contributions to this project are welcome. If you find any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request.
If you have any questions or need further assistance, please contact Nikhil .
Feel free to customize this README file according to your specific PHP CRUD application, including any additional sections or details relevant to your project.