Skip to content

Latest commit

 

History

History
65 lines (34 loc) · 1.74 KB

README.md

File metadata and controls

65 lines (34 loc) · 1.74 KB

notesapp-php

  • Notes application built using php and uses sqlite for storage. Added media support for taking pictures, video recording and audio recording.

  • install php and sqlite, enable sqlite in php

Initialize Database

  • This script should be executed first

  • The sqlite database and necessary tables creation is handled by create_database.php

$ php create_datbase.php

Start

Start application

$ php -S localhost:4000

Sqlite is a sql database for on disk storage so no external server needed for storage.

Functionalities:

  • Create Notebook
  • Update/Delete Notebook. Deleting Noteboooks deletes all the notes in the notebook
  • Create/Update/Delete Notes

CK editor is used for creating notes.

Screenshots

homepage

Screenshot from 2022-11-01 16-32-12

createnotebook

Screenshot from 2022-11-01 16-36-24

view notebooks

Screenshot from 2022-11-01 16-32-31

create notes

Screenshot from 2022-11-01 16-33-09

view notes

Screenshot from 2022-11-01 16-32-41

Screenshot from 2022-11-01 16-32-48