Skip to content

bensebastian21/Personal-Notes-Management-Web-Application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

3 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ“ Personal Notes Management Web Application

A full-stack PHP and MySQL based web application that enables users to securely create, organize, update, and delete personal notes with image attachments.

The application provides user authentication, session management, password security, note organization, and file upload functionality through a simple and responsive interface.


๐Ÿš€ Features

User Authentication

  • User Registration
  • Secure Login System
  • Password Hashing
  • Session-Based Authentication
  • Logout Functionality

Notes Management

  • Create Notes
  • View Personal Notes
  • Update Existing Notes
  • Delete Notes
  • User-Specific Data Access

Media Support

  • Image Uploads
  • Image Storage Management
  • Note Attachments

Security Features

  • Password Encryption using PHP Password Hashing
  • Session Validation
  • User Authorization
  • Protected Pages

User Experience

  • Responsive Interface
  • Form Validation
  • Clean Dashboard Layout
  • Easy Navigation

๐Ÿ—๏ธ System Architecture

User
 โ”‚
 โ–ผ
Authentication
(Register/Login)
 โ”‚
 โ–ผ
Session Management
 โ”‚
 โ–ผ
Notes Dashboard
 โ”‚
 โ”œโ”€โ”€ Create Notes
 โ”œโ”€โ”€ View Notes
 โ”œโ”€โ”€ Update Notes
 โ”œโ”€โ”€ Delete Notes
 โ””โ”€โ”€ Upload Images
 โ”‚
 โ–ผ
MySQL Database

๐Ÿ“Š Database Design

Users Table

Field Type
user_id INT (PK)
username VARCHAR
email VARCHAR
password VARCHAR

Notes Table

Field Type
note_id INT (PK)
user_id INT (FK)
note_text TEXT
image_path VARCHAR
date_created TIMESTAMP

Relationship

One User
    โ”‚
    โ–ผ
Many Notes

๐Ÿ› ๏ธ Technology Stack

Frontend

  • HTML5
  • CSS3
  • JavaScript

Backend

  • PHP

Database

  • MySQL

Development Environment

  • XAMPP
  • Apache Server
  • phpMyAdmin

๐Ÿ“‚ Project Structure

Personal Notes Management Web Application
โ”‚
โ”œโ”€โ”€ uploads/
โ”‚
โ”œโ”€โ”€ db.php
โ”œโ”€โ”€ register.php
โ”œโ”€โ”€ login.php
โ”œโ”€โ”€ logout.php
โ”œโ”€โ”€ landing.php
โ”œโ”€โ”€ update_note.php
โ”œโ”€โ”€ delete_note.php
โ”œโ”€โ”€ validation.js
โ”œโ”€โ”€ style.css
โ”œโ”€โ”€ styles.css
โ””โ”€โ”€ notes_app.sql

๐Ÿ” Authentication Flow

Register Account
      โ”‚
      โ–ผ
Login
      โ”‚
      โ–ผ
Session Created
      โ”‚
      โ–ผ
Access Dashboard
      โ”‚
      โ–ผ
Manage Notes
      โ”‚
      โ–ผ
Logout

โš™๏ธ Installation

Clone Repository

git clone https://github.com/bensebastian21/se.git

Move Project

Place the project folder inside:

xampp/htdocs/

Database Setup

  1. Start Apache and MySQL in XAMPP.
  2. Open phpMyAdmin.
  3. Create a database:
notes_app
  1. Import:
notes_app.sql

Configure Database Connection

Update the database credentials in:

db.php

Example:

$servername = "localhost";
$username = "root";
$password = "";
$dbname = "notes_app";

Run Application

Open browser:

http://localhost/se

๐ŸŽฏ Learning Outcomes

This project helped in understanding:

  • CRUD Operations
  • User Authentication Systems
  • Password Security
  • Session Management
  • Relational Database Design
  • File Upload Handling
  • Frontend Validation
  • Backend Development using PHP
  • MySQL Database Integration

๐Ÿ”ฎ Future Enhancements

  • Rich Text Editor
  • Search Functionality
  • Note Categories
  • Tags System
  • Dark Mode
  • PDF Export
  • Cloud Storage Integration
  • Note Sharing
  • User Profile Management

๐Ÿ‘จโ€๐Ÿ’ป Developer

Ben Sebastian

MCA Graduate | MERN Stack Developer | Aspiring Software Engineer

Connect With Me

LinkedIn: https://www.linkedin.com/in/bensebastian21

GitHub: https://github.com/bensebastian21


๐Ÿ“„ License

This project was developed for educational and learning purposes.


โญ If you found this project useful, consider giving it a star.

About

A PHP and MySQL web application for securely creating, managing, updating, and deleting personal notes with image attachments, user authentication, session management, and CRUD functionality.

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors