Multiple View in V.1.15

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

Re: [oams] Multiple View in V.1.15

By Dave - May 23, 2008

Hi Jeremy,

My first guess is your linking directly to the viewer and not passing the record number you want to view. You can create a custom link like this that works just like "_link". Note that $record might have a different name in your viewer, use that name instead.

<a href="customViewer.php?<?php echo $record['_filename'] ?>-<?php echo $record['num'] ?>">View Details</a><br/>

This should create a link like this:
customViewer.php?Your_Work_Title_Here-123

Give that a try and let me know if it works.

Hope that helps! :)
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] Multiple View in V.1.15

By jjem - May 24, 2008

Thanks Dave, works perfectly,
J