Group 2's submission for the SPAT Bootcamp 2017/18 can be viewed live at: http://ilo.gearhostpreview.com/register.php
Develop a worker feedback system wherein workers can basically express their concerns with regard to the nature of work, wage payments, working conditions, etc. which could then be utilised to put pressure on the employers/platforms/clients to improve their working conditions.
Create the required MySQL database tables:
CREATE TABLE review
(
idno INT(11) AUTO_INCREMENT,
platform VARCHAR(30),
wage DECIMAL(5,2),
currency VARCHAR(3),
hours_spent_working INT(11),
hours_spent_looking INT(11),
gender VARCHAR(3),
age INT(2),
rating INT(1),
country VARCHAR(45),
rating_pay INT(11),
rating_conditions INT(11),
rating_description INT(11),
comment VARCHAR(300),
rejection int(11),
PRIMARY KEY(idno)
);
CREATE TABLE user
(
idno INT(11) AUTO_INCREMENT,
password VARCHAR(100),
email VARCHAR(40),
isAdministrator TINYINT(1),
PRIMARY KEY(idno)
);
private $host = "";
private $dbName = "";
private $user = "";
private $pass = "";