Link names displayed on web page

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

Hi,
I'd like to know how to change the generated link names to something like "read more."

For instance, here's the link that generated from CMS Builder as I add to my list,
"http://www.litwillersimonsen.com/memorials_detail.php?Name-2-4"

How can I make it display as "Read More" instead?

Is this possible?

Site sample reference, http://www.litwillersimonsen.com/memorials_detail.php?Name-2-4

Thanks!

Krista


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.