Hi,
Here is a simple example:
page 1:
<?php
$variable1="42";
<a href=\"http://www.somepage.com/somefile.php?colID=$variable1\">click here</a>
?>
page 2:
ie when you click on the above link
if ($colID){
/*the variable has arrived*/
echo $colID;
}else{
/*no variable*/
}
hope this helps
/s