Thomas Küls
Hello.
I want to create a link, containingf of to fields.
{feld 3} is defined as TEXT and works well, when I place it in an article.
{feld 71} is defined as URL and works well, when I place it in an article (shows link and works).
What I want is to make a combination of both to create a Link with href = {feld 71} and content = {feld 3}
<a href="{feld 71}">{feld 3}</a>
Of course that doesn't work with Joomla. That's why I use Sourcerer.
But I tried the following lines and I get no result:
{source}<?php echo '<a href="{feld 71}">{feld 3}</a>'; <?{/source}
{source}<?php echo "<a href='{feld 71}'>{feld 3}</a>"; <?{/source}
{source}<?php echo '<a href="'; <?{/source}{feld 71}{source}<?php echo '">'; <?{/source}{feld 3}{source}<?php echo '</a>'; <?{/source}
Is Sourcerer notr able to work with fields od did I make a mistake?