-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.txt
More file actions
56 lines (39 loc) · 979 Bytes
/
info.txt
File metadata and controls
56 lines (39 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Install XAMPP (or any Apache + MySQL server).
Copy the project folder into:
xampp/htdocs/
Start:
Apache
MySQL
from XAMPP Control Panel.
Open phpMyAdmin:
http://localhost/phpmyadmin
Create a new database (example: notice_system).
Import the file:
setup.sql
into the created database.
Open:
config/db.php
and configure your database credentials:
$host = "localhost";
$username = "root";
$password = "";
$database = "notice_system";
Run the project in browser:
http://localhost/your-project-folder/public
Default Login Credentials
All users have the same password : password123
👤 Super Admin
Username: superadmin
Password: password123
👤 Admin
Username: admin
Password: password123
👤 Teacher
Username: teacher
Password: password123
👤 Student
Username: student
Password: password123
✅ Workflow Summary
Super Admin → Admin Approval → Teacher Publishing → Student Viewing
Rejected notices are returned with feedback and can be resubmitted.