https://github.com/pj8912/notesapp-php
Notes application built using PHP and SQLite. Added media support for taking pictures, video recording and audio recording.
https://github.com/pj8912/notesapp-php
camera getusermedia media php php8 sqlite sqlite3
Last synced: 6 months ago
JSON representation
Notes application built using PHP and SQLite. Added media support for taking pictures, video recording and audio recording.
- Host: GitHub
- URL: https://github.com/pj8912/notesapp-php
- Owner: pj8912
- Created: 2022-06-15T12:13:48.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-06T03:05:41.000Z (over 2 years ago)
- Last Synced: 2024-11-12T12:13:13.317Z (8 months ago)
- Topics: camera, getusermedia, media, php, php8, sqlite, sqlite3
- Language: HTML
- Homepage: https://github.com/pj8912/notesapp-php
- Size: 34.1 MB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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

## createnotebook

## view notebooks

## create notes

## view notes

