Ok so here's the basic idea:
List page of the table has the following fields:
id, title, position (the only unique value is id)
Now what I want to do is create a hyper link under the title variable that will show a preview of the page. This would be simple if the client could have it under the ID field because then I could do something like:
$value = $value ."<br /><a href='../preview.php?ID=$value'>preview</a>";
But because the client wants it in the title field, I simply can't use that code above. Is there a way to access the value of ID for the row? I hope I am clear on this.