Hey Leute. Vielleicht kann mir hier jemand helfen.
Ich möchte für Google Produkte ein Feed erstellen.
Doch Google nimmt mein Code nicht so an.
Google Sagt: Input Method:Fetch .
BTW: Ich benutze Joomla.
Was mach ich denn falsch?
<?xml version=”1.0″?>
<feed xmlns=”http://www.w3.org/2005/Atom”
xmlns:g=”http://base.google.com/ns/1.0″>
<title>PickNstick Produkte</title>
<link href=”http://www.picknsntick.de” rel=”alternate” type=”text/html” />
<updated>2017-04-24T18:30:02Z</updated>
<author> <name>PickNstick Admin</name> </author>
<?php
$db=JFactory::getDBO();
$query=$db->setQuery("SELECT * FROM y1r53_sc_products");
$result = $db->loadObjectList();
foreach ($result as $row) {
echo '<entry>';
echo "<br>";
echo "<id>$arr->id</id>";
echo "<br>";
echo "<title>$row->shorttext</title>";
echo "<br>";
echo "<price>$row->unitprice</price>";
echo "<br>";
echo '</entry>';
echo "<br>";
}
?>
</feed>
vielenn Dannk euch !