Initial comming of full program to main branch

This commit is contained in:
James Richie
2026-02-14 07:57:18 -05:00
parent 2b18dcef82
commit 6195ca4709
1516 changed files with 432116 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
$SQL = "create view view_rdis as
select rdis.*,
date_format(rdi_entry_date, '%c/%e/%Y') as rdi_entry_date_verbose,
date_format(rdi_permit_date, '%c/%e/%Y') as rdi_permit_date_verbose,
date_format(rdi_created, '%c/%e/%Y %l:%i %p') as rdi_created_verbose,
date_format(rdi_changed, '%c/%e/%Y %l:%i %p') as rdi_changed_verbose,
IF(
rdi_phone IS NULL OR rdi_phone = '',
'Not Provided',
CONCAT('(', SUBSTRING(rdi_phone, 1, 3), ') ',
SUBSTRING(rdi_phone, 4, 3), '-',
SUBSTRING(rdi_phone, 7, 4)
)) as rdi_phone_verbose,
concat('$', format(rdi_value, 2)) as rdi_value_verbose,
format(rdi_size, 0) as rdi_size_verbose
from rdis";
//-- on counties.county_serial = counties.county_serial";
?>