Skip to content

MountainCleaver/notes-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notes App (PHP + MySQL)

This is a simple note app that performs full CRUD (Create, Read, Update, Delete) operations using PHP (PDO) and MySQL.


Screenshot

image

Features

  • Create notes
  • Read / display notes
  • Update notes
  • Delete notes
  • Simple UI
  • PDO prepared statements

Database Structure

Table: notes

Field Type Attributes
id int(11) Primary Key, Auto Increment
title varchar(100) NOT NULL
content text NOT NULL
date datetime NOT NULL

Sample Data

INSERT INTO notes (title, content, date) VALUES
('Meeting Notes', 'Discussed project timeline and deliverables.', NOW()),
('Grocery List', 'Milk, Eggs, Bread, Coffee.', NOW()),
('Workout Plan', 'Monday: Chest, Back, Legs rotation.', NOW()),
('Ideas', 'Build a notes app with CRUD functionality.', NOW()),
('Reminder', 'Pay bills before due date.', NOW()),
('Study Notes', 'Review PHP PDO prepared statements.', NOW()),
('Travel Plans', 'Visit Japan in spring.', NOW()),
('Books', 'Clean Code, Atomic Habits, Deep Work.', NOW()),
('Journal', 'Today I learned CRUD with PHP.', NOW()),
('Tasks', 'Finish backend API and testing.', NOW());

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors