getCities('Norway'); $this->getCounty('Bath'); } public function getCities($country) { $url = 'http://files.klunde.net/files.klunde.net/ExampleServer.php?country=' . $country; echo $this->doGetRequest($url); exit(); } public function getCountry($city) { $url = 'http://files.klunde.net/files.klunde.net/ExampleServer.php'; $params = 'city=' . $city; echo $this->doPostRequest($url, $params); exit(); } } $obj = new ExampleClient(); ?>