<?php

require_once('zipcode.php');

printf("Creating ZIP code table...\r\n");
  $ZIP = new Zipcode();
  $ZIP->create_table();
  printf("Loading ZIP code table...\r\n");
  $ZIP->load();
  printf("Done.");
?>