[opgelost]xml feed url hulp nodig!
arjan hazewinkel
14/12/2012 19:04:38Beste leden.
Via het volgende scriptje lees ik de xml feed uit op mijn website.
Nu laat hij alleen de URL als text zien en ik wil graag dat dit als link is.
Hoe krijg ik dit voor elkaar?
Thanks
Via het volgende scriptje lees ik de xml feed uit op mijn website.
Quote:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?
$content = file_get_contents('http://trojanremover.nl/productfeed.xml');
$xml = simplexml_load_string($content);
if($xml) {
echo 'Titel: '.$xml->product->name.'<br />';
echo 'Link: '.$xml->product->URL.'<br />';
}
?>
$content = file_get_contents('http://trojanremover.nl/productfeed.xml');
$xml = simplexml_load_string($content);
if($xml) {
echo 'Titel: '.$xml->product->name.'<br />';
echo 'Link: '.$xml->product->URL.'<br />';
}
?>
Nu laat hij alleen de URL als text zien en ik wil graag dat dit als link is.
Hoe krijg ik dit voor elkaar?
Thanks
Gewijzigd op 14/12/2012 20:37:46 door Arjan hazewinkel
PHP hulp
24/11/2024 11:01:41Reshad F
14/12/2012 19:07:44arjan hazewinkel
14/12/2012 19:15:34P-ter AA
14/12/2012 20:03:05Arjan hazewinkel op 14/12/2012 19:15:34:
dan doet hij niks op een of andere manier
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?
$content = file_get_contents('http://trojanremover.nl/productfeed.xml');
$xml = simplexml_load_string($content);
if($xml) {
echo 'Titel: '.$xml->product->name.'<br />';
echo 'Link: <a href="'.$xml->product->URL.'">'.$xml->product->URL.'</a><br />';
}
?>
$content = file_get_contents('http://trojanremover.nl/productfeed.xml');
$xml = simplexml_load_string($content);
if($xml) {
echo 'Titel: '.$xml->product->name.'<br />';
echo 'Link: <a href="'.$xml->product->URL.'">'.$xml->product->URL.'</a><br />';
}
?>