[insert_php]
$juliUrl = ‚https://www.izus.cz/skola/dokumenty/nastenka/export/?zus=381‘;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $juliUrl);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$xml = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($xml);
foreach ($xml->vzkaz as $vzkaz) {
echo
‚
‚,
$vzkaz->text_vzkazu,
‚‚,
‚
‚;
}
[/insert_php]