you don't even need sessions.
Step 1: create a table like this:
link_track
id --> auto_increment
page_id --> bigint
when --> bigint
Step 2: at the top of showdetail.php put this
<?php
$sql = "INSERT INTO link_track (page_id,when) VALUES ";
$sql .= "(" . $_GET['id'] . "," . time() . ")";
mysql_query($sql);
?>
That's it you're done. Of course now you'll need to write a script to display this information, but that's all there is to storing it.