_link corrupted

3 posts by 2 authors in: Forums > CMS Builder
Last Post: April 9, 2008   (RSS)

By douglasbraun - April 9, 2008

The retreived _link looks like: services_subpage2.php?h2_span_style_color_888888_Document_Management_span_h2-1/"

This portion doesn't belong: h2_span_style_color_888888_Document_Management_span_h2

It is actually a variant of a field called "title" that looks like this:
<h2><span style="color: #888888;">Document Management</span></h2>

I'm not certain how the _link is merging with the title field. I'm actually trying to build a link around the title when it comes up with this peculiar result. But it turns out the _link is corrupted even when being echoed by itself.

The code is:

<?php foreach ( $listRows as $record ): ?><a href="
<?php echo $record['_link'] ?>" title="Click here for more information" >
<?php echo $record['title'] ?></a>

Re: [Dave] _link corrupted

By douglasbraun - April 9, 2008

That'll do. Makes sense.

Thanks You Dave