Mine
public text v1 · immutable<?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>';
?>