Skip to content

Commit

Permalink
Display topic
Browse files Browse the repository at this point in the history
  • Loading branch information
lechiluan committed Apr 12, 2023
1 parent f0ce04f commit 1ddd68c
Show file tree
Hide file tree
Showing 15 changed files with 685 additions and 576 deletions.
4 changes: 2 additions & 2 deletions QAC_Staff.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
include 'connection.php';
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
Expand Down Expand Up @@ -46,7 +46,7 @@ class="rounded-circle me-2"
style="width: 38px; height: 38px; object-fit: cover"/>
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
6 changes: 5 additions & 1 deletion QAC_Topic.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -42,7 +46,7 @@ class="rounded-circle me-2"
style="width: 38px; height: 38px; object-fit: cover" />
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
6 changes: 5 additions & 1 deletion QAC_Topic_Detail.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -42,7 +46,7 @@ class="rounded-circle me-2"
style="width: 38px; height: 38px; object-fit: cover" />
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
8 changes: 6 additions & 2 deletions QAM_Account.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -42,7 +46,7 @@ class="rounded-circle me-2"
style="width: 38px; height: 38px; object-fit: cover"/>
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down Expand Up @@ -329,7 +333,7 @@ class="d-flex align-items-center text-decoration-none text-dark" id="manage-topi
<?php } ?>
</div>
<?php
include 'connection.php';
include("connection.php");
if (isset($_POST["edit"])) {
$staff_id = $_POST["staffID"];
$full_name = $_POST["fullName"];
Expand Down
6 changes: 5 additions & 1 deletion QAM_Department.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -42,7 +46,7 @@ class="rounded-circle me-2"
style="width: 38px; height: 38px; object-fit: cover"/>
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
6 changes: 5 additions & 1 deletion QAM_Ideas.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -43,7 +47,7 @@ class="rounded-circle me-2"
style="width: 38px; height: 38px; object-fit: cover" />
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
6 changes: 5 additions & 1 deletion QAM_Role.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -41,7 +45,7 @@
class="rounded-circle me-2" style="width: 38px; height: 38px; object-fit: cover"/>
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
6 changes: 5 additions & 1 deletion QAM_Topics.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -43,7 +47,7 @@
class="rounded-circle me-2" style="width: 38px; height: 38px; object-fit: cover"/>
</div>
<div>
<p class="m-0">Quality Assurance Manager</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
6 changes: 5 additions & 1 deletion Settings.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php
include("connection.php");
session_start(); // Start the session
?>
<!DOCTYPE html>
<html lang="en">

Expand Down Expand Up @@ -42,7 +46,7 @@ class="rounded-circle me-2"
style="width: 38px; height: 38px; object-fit: cover" />
</div>
<div>
<p class="m-0">Marris Nguyen</p>
<p class="m-0"><?php echo $_SESSION['full_name']; ?></p>
</div>
</a>
</li>
Expand Down
Loading

0 comments on commit 1ddd68c

Please sign in to comment.