Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Deni Santos  >  CEP Web Service  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: CEP Web Service
Determine the address of a Brazilian zip code
Author: By
Last change:
Date: 2008-05-23 04:49
Size: 189 bytes
 

Contents

Class file image Download
<?php

    
include 'CepWebService.php';
    
    
$cep = new CepWebService();
    
$result $cep->setCep('80730-400')
                  ->
find();
    
    echo 
"<pre>";
    
print_r($result);
    echo 
"</pre>";
    
?>