Thanks Kev,
By the time I read your post I had figured a similar method. I used;
print "<td bgcolor=#B2B3F0><A HREF=awaitingmoreinfo.php?whr=";
print $col1;
print $col2;
print ">";
Then just used GET on the next page to do the work like this;
$warehouseprefix = substr($GET[whr],0,2);
$warehouseref = substr($GET[whr],2);
/* Connecting, selecting database */
$link = odbc_connect("mydatabase","sa","","");
$row = odbc_exec($link,"SELECT Consignments.ReceiverCode, .............................etc........ FROM Consignments INNER JOIN Publishers ON Publishers.PublisherCode = Consignments.PublisherCode WHERE (((Consignments.Prefix)='$warehouseprefix') AND ((Consignments.WRef)='$warehouseref'))");
This selects the record to produce a table from.
Regards,
Neil.