removed todos

This commit is contained in:
Joshua Perry 2022-11-19 14:58:22 +00:00
parent d420691460
commit bacd3f72d3
1 changed files with 1 additions and 4 deletions

View File

@ -16,7 +16,7 @@ $pageContent = '<h1>'.$pageHeading.'</h1>
require '../layout.php'; require '../layout.php';
function populateList($category) { //TODO: This will need to be updated to populate from the database function populateList($category) {
$output = ''; $output = '';
$server = 'mysql'; $server = 'mysql';
$username = 'student'; $username = 'student';
@ -56,9 +56,6 @@ function populateList($category) { //TODO: This will need to be updated to popul
</article> </article>
</li>'; </li>';
} }
return $output; return $output;
} }
?> ?>