Courses.php: better variable name ( -> )

Bug430-Eden2
Lan Hui 2023-09-08 19:37:25 +08:00
parent 5683013655
commit 849009e624
1 changed files with 4 additions and 4 deletions

View File

@ -578,19 +578,19 @@ include 'Header.php';
$academic_year = $row['Academic_Year']; $academic_year = $row['Academic_Year'];
$url = $row['URL']; $url = $row['URL'];
$id = $row['Course_ID']; $id = $row['Course_ID'];
$Status = $row['Status']; $status = $row['Status'];
if($Status=="Joined") if($status=="Joined")
{ {
echo "<a href='~\..\Course.php?url=$url'> <div class='btn btn-default' style='word-wrap:break-word'> echo "<a href='~\..\Course.php?url=$url'> <div class='btn btn-default' style='word-wrap:break-word'>
($code) - $name <br>($url) &nbsp;&nbsp;&nbsp; <i class='fa fa-check-circle'></i> $Status &nbsp;&nbsp;&nbsp;&nbsp; ($code) - $name <br>($url) &nbsp;&nbsp;&nbsp; <i class='fa fa-check-circle'></i> $status &nbsp;&nbsp;&nbsp;&nbsp;
<br> <span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span></div></a> <br> <span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span></div></a>
"; ";
} }
else else
{ {
echo "<div class='btn btn-default'> echo "<div class='btn btn-default'>
($code) - $name <i class='btn btn-sm btn-danger'> $Status</i> ($code) - $name <i class='btn btn-sm btn-danger'> $status</i>
<br> <span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span></div> <br> <span style='font-size:8pt'>Faculty: $faculty &nbsp; Year: $academic_year &nbsp; Lecturer: $lecturer </span></div>
"; ";
} }