TRiBByX
11/11/2016 - 9:59 AM

PHP SOAP Consumer

PHP SOAP Consumer

<?php

$client = new SoapClient("http://footballpool.dataaccess.eu/data/info.wso?wsdl");
$result = $client->TopGoalScorers(array('iTopN'=>5));

?>

    <?
        $playerArray = $result->TopGoalScorersResult->tTopGoalScorer;
?>

<table style="width: 100%">
    <tr>
        <th>Name</th>
        <th>Goals</th>
        <th>Country</th>
        <th>Flag</th>
        <th>Flag Large</th>
    </tr>
    <?
        foreach($playerArray as $player){
            ?>
            <tr>
                <th><?print $player->sName;?></th>
                <th><?print $player->iGoals;?></th>
                <th><?print $player->sCountry;?></th>
                <th><img src="<?print $player->sFlag;?>" alt=""></th>
                <th><img src="<?print $player->sFlagLarge;?>" alt=""></th>
            </tr>
            <?
        }

    ?>