This topic is locked

List page: How to link an image thumb to the view page and not to enla

8/27/2010 7:53:50 AM
PHPRunner General questions
G
gavin1211 author

On my list page, I have a thumbnail image for each entry which I want to link to the corresponding view record, and not to the enlarged image. Does anyone know how to do this?

A
ann 8/31/2010

Gavin,
set up field as Custom on the View as settings dialog on the Visual Editor tab.

Here is a sample code to add:

$value= "<a href='TableName_view.php?editid1=". $data["ID"] ."'><img src=\"".$value."\"></a>";



where Id is your actual key field name, TableName is your actual table name.