Recent additions page.

This commit is contained in:
2023-08-07 07:27:05 -05:00
parent ebaf321b27
commit 4372c21bed
2 changed files with 280 additions and 1 deletions

View File

@ -127,7 +127,7 @@ ORDER BY value ASC");
while ($row = $types->fetchArray()) {
$row_value = $row['value'];
$row_titlecase = mb_convert_case($row_value, MB_CASE_TITLE, "UTF-8");
echo '<li><a href="results.php?ty='.$row_value.'">'.$row_titlecase.'</a></li>';
echo '<li><a href="recent.php?ty='.$row_value.'">'.$row_titlecase.'</a></li>';
//echo '<li>'.$row_value.'</li>';
}