There is a method that removes the image...
How can i just use the image shown by src="..." in the $description part and remove the description text?
<?php
$html = "";
$url = "http://newsfeed.zeit.de/index";
$xml = simplexml_load_file($url);
for($i = 0; $i < 1; $i++){
$description = $xml->channel->item[$i]->description;
//removes image
$description = preg_replace("/<img[^>]+\>/i", "", $description);
$html .= "$description";
}
echo $html;
?>