Making Title the URL link
2 posts by 2 authors in: Forums > CMS Builder
Last Post: January 5, 2009 (RSS)
Hi
Is there a way of making the Title content the URL link rather than the 'see more'?
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 ></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
Try this:
<a href="<?php echo $record['_link'] ?>"> <?php echo $record['title'] ?> </a>
Kenny