Server gehören uns. Haben aber keinen root-Zugang.
phpinfo ist http://www.isis-crm.de/info.php
Und hier ist der code des include()
Danke. Peggy
<?PHP
$boxId = intval( $_GET['box_id'] );
$xml = new SimpleXMLElement(file_get_contents("http://www.nomina.de/pressebox/crm.xml ",FALSE ));
$xmlPM = $xml->xpath("/pressebox/items/press_release[./box_id={$boxId}]");
foreach ($xmlPM as $pm) {
$br = "<BR>";
echo "<TR><TD>\n";
echo "<font style="color: #663300; font-weight: bold;">".utf8_decode($pm->headline)."</font>".$br;
echo "<font style="color:#4D4D4D; font-weight: bold;">".utf8_decode($pm->sub_headline)."</font>".$br;
echo "<img src="".$pm->counterpixel."">".$br;
foreach ($pm->fulltext->paragraph as $text){
echo "<P>".utf8_decode($text)."</P>";
}
echo "<HR style="width:550px, size: 1px;>";
$attachments = $pm->attachments;
if ($attachments){
echo "<B>Download (Bilder/PDF):</B><BR>";
foreach($pm->attachments->attachment as $at){
$link = $at->link;
$size = $at->size;
$thumblink = $at->thumblink;
$description = $at->description;
echo "<a style="text-decoration: underline; color: #663300;" href="".$link."" target="_blank">".utf8_decode($description)."</a> (".$size.")".$br;
}
}
echo $br;
echo "</TD></TR>\n";
}
?>