Making Title the URL link

2 posts by 2 authors in: Forums > CMS Builder
Last Post: January 5, 2009   (RSS)

By chassa2556 - January 5, 2009

Hi

Is there a way of making the Title content the URL link rather than the 'see more'?

<?php echo $record['title'] ?> <a href="<?php echo $record['_link'] ?>"> see more &gt;</a>

Re: [chassa2556] Making Title the URL link

By Kenny - January 5, 2009

Sure - just put the title echo statement where 'see more' is

Try this:

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


Kenny