Web registration and management for Open Recruitment of FOSTI UMS
- Create database on your MySQL server
CREATE DATABASE oprec;
- Import
database.sql
to your database - Create password using MD5 and insert to table
admin
SELECT md5('password');
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');
}
?>