All pastes #2093778 Raw Edit

Mine

public text v1 · immutable
#2093778 ·published 2011-11-11 11:32 UTC
rendered paste body
<?php
$user = new SimpleXMLElement('http://api.erepublik.com/v2/feeds/citizens/1476235.xml', null, true);
echo <<<EOF
<table>
        <tr>
                <th>USer ID</th>
                <th>Nume</th>
        </tr>

EOF;

        echo <<<EOF
        <tr>
                <td>{$user->id}</td>
                <td>{$user->nume}</td>
        </tr>

EOF;
echo '</table>';


?>