Link names displayed on web page

5 posts by 3 authors in: Forums > CMS Builder
Last Post: November 17, 2009   (RSS)

Re: [Kristamk] Link names displayed on web page

By Damon - November 17, 2009

Hi Krista,

Here is an example of code that would work for you:

<a href="<?php echo $record['_link'] ?>">Read More</a>

Try that and let me know if you have any questions.
Cheers,
Damon Edis - interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/

Re: [Kristamk] Link names displayed on web page

By Dave - November 17, 2009

Hi Krista,

Try replacing this:
<a href="<?php echo $record['_link'] ?>"><?php echo $record['_link'] ?></a><br/>

With this:
<a href="<?php echo $record['_link'] ?>">Read more...</a><br/>

Let me know if that works for you.
Dave Edis - Senior Developer
interactivetools.com

Re: [Damon] Link names displayed on web page

Thanks! It worked.

Re: [Dave] Link names displayed on web page

Thank you for seeing the extra "<?php echo $record['_link'] ?>"

That worked!