<?php
require_once 'Weather_Class.php';
$weather = new Weather("Edmond", "Oklahoma");

echo "<pre>";
print_r($weather->conditions);
echo "</pre><br/>";

?>