Link to Permalink.

By Toledoh - March 29, 2016

Hi all.

I have a section called Artists, and each record has a permalink, which works fine when I can use <?php echo $artistsRecord['permalink']; ?>

However, I'm listing records from "music" and I want to create a link to the artist associated with each item, so I currently use

// load records from 'events'
list($musicRecords, $musicMetaData) = getRecords(array(
'tableName' => 'music',
'loadUploads' => true,
'allowSearch' => false,
));

...

<?php foreach ($musicRecords as $record): ?>

<a href="/artistDetail.php?num=<?php echo htmlencode($record['artist']) ?>">

....

How do I get the link to go to the permalink, rather than the php page?

Cheers,

Tim (toledoh.com.au)

By Toledoh - March 31, 2016

Great!  I've added a leading forward slash to bring it back the the base.

Thanks!

Cheers,

Tim (toledoh.com.au)