Every link needs to be slightly different from the others to distinguish it. You can do that by passing a value through the query string. This value must be written by your code automatically, perhaps like this:
PHP Code:
$i = 1;
foreach($CurrentRow as $field) {
print "<TD><A href=Query.php?cell=" . ($i++) . "> $field</A></TD>";
}
On Query.php, you can get at the "cell" variable through
PHP Code:
$whichCell = $_GET['cell'];