Xartok

Get French Flag Lol

Jul 28th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2. // php soap client class must be enabled
  3. $wsdl = "http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL";
  4. $soapClient = new SoapClient($wsdl);
  5.  
  6. $res = $soapClient->CountryFlag(array(
  7.     "sCountryISOCode" => "FRA"
  8. ));
  9.  
  10. echo '<img src=' .'"'.$res->CountryFlagResult.'"'. '/>';
Add Comment
Please, Sign In to add comment