First git push to github

This commit is contained in:
2026-05-29 14:52:16 -04:00
commit 94bc6117f2
1576 changed files with 455304 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
$SQL = "create table zipcodes
(
zipcode_serial serial,
zipcode_code bigint not null default 0,
zipcode_city varchar(50) not null default '',
zipcode_state varchar(50) not null default '',
zipcode_county varchar(50) not null default '',
zipcode_country varchar(50) not null default '',
primary key (zipcode_serial),
unique key (zipcode_code)
)
default character set = utf8";
?>