I need help with what to put in the config.txt. Any ideas? Thanks.
//class variables
var $pageOne = 'http://www.google.com/';
var $pageTwo = 'http://www.yahoo.com/';
/**
* if you want to limit the page from being shown to only 1 country, enter the country name here
* example: Canada
*/
var $limit_one_country = '';
var $rec;
//class constructor function
function __construct(){
$this->find_pages();
$this->grab_location();
return;
}
//find the pages from the configuration file
function find_pages(){
$page_string = file_get_contents('resources/config.txt');
$parts = explode('|',$page_string);
$this->pageTwo = trim($parts[0]);
$this->pageOne = trim($parts[1]);
}