I want to edit my feed code: <link>http://www.mineoppskrifter.no/view_recipe.php?id=<?=$result['id'];?></link> to <link>http://www.mineoppskrifter.no/view_recipe.php?id=<?=$result['id'];?>&<?=$result['name'];?></link> Code (markup): I cannot use "&". What can I use instead to get an output of that character?
You need to escape the & by substituting & (this should always be done for XML/XHTML Markup) Thus: <link>http://www.mineoppskrifter.no/view_recipe.php?id=<?=$result['id'];?>&<?=$result['name'];?></link> James