Hi,
You can do the same for "columb". I am not sure wether you can have two "distinct"selections in one query. probably not. So you have to do it this way.
in your processing page, you place instead of
$query = "select * from table where COLUMA = $columa";
$query = "select * from table where (COLUMA = $columa) AND (COLUMB = $columb)";
// To get the output from that page:
$result= mysql_query($query);
while $outputrow =@ mysql_fetch_array($result)
{
echo $outputrow[COLUMA], $outputrow[COLUMB] ;
}
hope this gets you started