--- /dev/null
+<?php
+define("CCCP_BASEURL", "https://cccp.slightlycyberpunk.com/CCCP/");
+define("CCCP_BASELAT", "41.49039899");
+define("CCCP_BASELON", "-71.31335799");
+define("CCCP_STATE", "Rhode Island");
+
+$options = [
+ PDO::ATTR_EMULATE_PREPARES => false, // Disable emulation mode for "real" prepared statements
+ PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array
+];
+$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options);
+?>
\ No newline at end of file
}
$resCity = $resultsObj->features[0]->properties->city;
$resState= $resultsObj->features[0]->properties->state_code;
- $resZip = $resultsObj->features[0]->properties->postcode;
+ $resZip = substr($resultsObj->features[0]->properties->postcode,0,5);
// Sometimes geoapify doesn't return a zipcode...not sure why...but we don't really need it anyway
if( !isset($resultsObj->features[0]->properties->postcode) ) {
echo "ERROR: Postcode not returned from geocoder.geoapify".PHP_EOL;