Hi all,
Basically I just want to create links to external websites.
I have a member company list in the form of a table displaying the companies in ascending order. Some of the companies have direct links to their individual websites.
I have created a channel (member_companies) which contains a text input custom field (company_url).
Below is my attempted code for the table containing the URL and company name.
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
{exp:channel:entries channel="member_companies" dynamic="off" sort="asc"}
<tr>
<td><span><a href="http://{company_url}">{title}</a></span></td>
</tr>
{/exp:channel:entries}
</tbody>
</table>The displaying result on the page is the URL followed by the Title. e.g.
<a href="http://www.membersite.com.au>a">http://www.membersite.com.au">a</a> Member Company LtdAnd the path is all messed up. e.g.
<a href="http://www.mysite.com.au/corporate/companies/<a">http://www.mysite.com.au/corporate/companies/<a</a>Where am I going wrong?
Thanks,
Rob