Files

12 lines
399 B
PHP
Raw Permalink Normal View History

2026-05-29 14:52:16 -04:00
<?php
$SQL = "create view view_dropdowntypes as
select dropdowntypes.*,
date_format(dropdowntype_created, '%c/%e/%Y %l:%i %p') as dropdowntype_created_verbose,
date_format(dropdowntype_changed, '%c/%e/%Y %l:%i %p') as dropdowntype_changed_verbose
from dropdowntypes
order by dropdowntype_title";
?>