Note Saver is a to-do list application built using HTML, CSS, Bootstrap, JavaScript, PHP, and MySQL. It allows users to add, edit, and delete notes. The app features a data table with pagination, ensuring easy navigation through tasks.
- Add, edit, and delete notes
- Data table with pagination for efficient task management
git clone https://github.com/hashirmeraj/note-saver.git
cd notesaver
- Open phpMyAdmin on your local server (e.g., XAMPP).
- Create a new database named
note
. - Import the SQL file provided in the repository (
note.sql
) into thenote
database.
$servername = "localhost";
$username = "root";
$password = ""; // your MySQL password
$dbname = "note";
- Start your local server (e.g., XAMPP, MAMP).
- Access the project in your web browser:
http://localhost/note-saver
Once installed, you can start adding, editing, and deleting notes. Use the pagination feature to navigate through your notes easily.