Guest User

Tempo Real - Página PHP - by: FreeGells

a guest
Jan 4th, 2013
816
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.  
  3.     $cidade = $_GET [ 'cidade' ] ;
  4.     $url = "http://www.previsaodotempo.net.br/brasil/$cidade/" ;
  5.     $dados = file_get_contents ( $url ) ;
  6.     $array = explode ( "Tempo agora:", $dados ) ;
  7.     $clima = explode ( "\"", $array [ 1 ] ) ;
  8.     echo $clima [ 0 ] ;
  9.  
  10. ?>
Add Comment
Please, Sign In to add comment