10 lines
340 B
PHP
10 lines
340 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$SQL = "create view view_historycodes as
|
||
|
|
|
||
|
|
select historycodes.*,
|
||
|
|
date_format(historycode_created, '%c/%e/%Y %l:%i %p') as historycode_created_verbose,
|
||
|
|
date_format(historycode_changed, '%c/%e/%Y %l:%i %p') as historycode_changed_verbose
|
||
|
|
|
||
|
|
from historycodes ";
|
||
|
|
?>
|