Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 579 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 579 Bytes

Web Oprec

Web registration and management for Open Recruitment of FOSTI UMS

How to use

  1. Create database on your MySQL server
CREATE DATABASE oprec;
  1. Import database.sql to your database
  2. Create password using MD5 and insert to table admin
SELECT md5('password');

Open and close registration

Edit file index.php on variable $status with "open" or "close"

<?php

$status = "open";

if ($status == "open") {
    require('./homepage/opening.php');
} else if ($status == "closed") {
    require('./homepage/closing.php');
}

?>