Login   Register  
PHP Classes
elePHPant
Icontem

File: example-1

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Matthew Johnston  >  Current City Weather  >  example-1  >  Download  
File: example-1
Role: Example script
Content type: text/plain
Description: Example 1
Class: Current City Weather
Get weather forecast of a city from Wunderground
Author: By
Last change:
Date: 2008-09-03 09:50
Size: 163 bytes
 

Contents

Class file image Download
<?php
require_once 'Weather_Class.php';
$weather = new Weather("Edmond""Oklahoma");

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

?>