Compare commits

..

No commits in common. "a2e8382c7c19960baaf377ab3e6df3fb969618cd" and "0ce3003e34aa58c711aa011d562d8ddf60fcdccc" have entirely different histories.

1 changed files with 8 additions and 5 deletions

View File

@ -8,9 +8,9 @@
<table style="border-collapse: collapse; width: 100%; ">
<thead>
<tr>
<th style="border: 1px solid #6b6245; padding: 8px; text-align: center;">Sl No.</th>
<th style="border: 1px solid #6b6245; padding: 8px; text-align: center;">Faculty Name</th>
<th style="border: 1px solid #6b6245; padding: 8px; text-align: center;">Department</th>
<th style="border: 1px solid #6b6245; padding: 8px; text-align: left;">Sl No.</th>
<th style="border: 1px solid #6b6245; padding: 8px; text-align: left;">Faculty Name</th>
<th style="border: 1px solid #6b6245; padding: 8px; text-align: left;">Action</th>
</tr>
</thead>
<tbody>
@ -25,8 +25,11 @@
foreach ($content as $notice) {
echo '<tr>
<td style="border: 1px solid #6b6245; padding: 8px;">' . $serialNumber . '</td>
<td style="border: 1px solid #6b6245; padding: 8px;"><a href="/faculty/'.$notice['slug'].'.html">' . htmlspecialchars($notice['title']) . '</a></td>
<td style="border: 1px solid #6b6245; padding: 8px; text-align: center;"></td>
<td style="border: 1px solid #6b6245; padding: 8px;">' . htmlspecialchars($notice['title']) . '</td>
<td style="border: 1px solid #6b6245; padding: 8px; text-align: center;">
<a href="/faculty/'.$notice['slug'].'.html">View</a>
<a href="#"></a>
</td>
</tr>';
$serialNumber++;
}