signed up to use Amazon Route 53 <http://aws.amazon.com/route53/>.

	* You already understand the fundamentals of object-oriented PHP.

	* You've verified that your PHP environment passes the SDK Compatibility Test.

	* You've already added your credentials to your config.inc.php file, as per the
	  instructions in the Getting Started Guide.

	TO RUN:
	* Run this file on your web server by loading it in your browser, OR...
	* Run this file from the command line with `php cli-r53_list_hosted_zone.php`.
*/
/*%******************************************************************************************%*/
// SETUP
// Enable full-blown error reporting. http://twitter.com/rasmus/status/7448448829
error_reporting(-1);
// Set HTML headers
header("Content-type: text/html; charset=utf-8");
// Include the SDK
require_once '../../sdk.class.php';
/*%******************************************************************************************%*/
// LIST HOSTED ZONE
$route53 = new AmazonRoute53();
// Possible options. Reference: http://docs.amazonwebservices.com/Route53/latest/APIReference/API_ListHostedZones.html
$opt = array('Marker' => 'Z2EUQ1WTGCTBG2', 'MaxItems' => 10);
// Send request!
$response = $route53->list_hosted_zone();
// Don't pass option
// Display
print_r($response);