Simple Dairy Record Management System built with vanilla php as a Pro-Bono Project for a college student
- Manage farmers
- Manage employees and their roles
- Record delivery
- Set payment rates
- Pay farmers
- View reports
Has access to all the features
Can perform all MAnager tasks except
- Set payment rates
- Manage employees
The employee who is receiving the deliveries
- Record deliveries
- Add Farmers
- View reports
- Clone this repo to your documents root e.g under
c:\xampp\htdocs\Dairy
on windows - Import the
dairy.sql
file to your database. (You can create a database called dairy using phpmyadmin and import this file into it) - open
inc\config.incl.php
file and enter your database settings
define('db_host', 'localhost');
define('db_user', 'root');
define('db_password', '');
define('db_database', 'dairy');
define ('PAGE_URL', 'http://localhost/Dairy/');
- Open the url to your project e.g http://localhost/Dairy and login with an already created account
email: manager@example.com
password: manager123
email: supervisor@example.com
password: supervisor123
email: clerk@example.com
password: clerk123