Currently I am using the php geoip_country_code_by_name function to serve up different content for different countries from an array which looks like this:
<?php
$content = array(
'GB' => array(
'meta_description' => "Description is here",
'social_title' => "Title here",
'country_content_js' => "js/index.js",
),
'BR' => array(
'meta_description' => "Different Description is here",
'social_title' => "Another Title here",
'country_content_js' => "js/index-2.js",
),
);
?>
But I only have specific content for Brazil and Great Britain. I want any other country accessing the page to be served a default array of content which will differ from BR and GB.
Is there a way to create a rule that serves up a default set of content to any country that is not specified in my array?