actually, both of your codes worked, but for some reason only 1 tag is being queried.
got it working, thank you both for the help. The working solution was:
<?php
$tgs = array();
$tgs[] = $_REQUEST['VST1'];
$tgs[] = $_REQUEST['VST2'];
$tags = implode(",",$tgs);
query_posts('tag='.$tags);
?>
ok, so I have the first part of the function working (1 + 2), which is:
<?php
$tgs = array();
$tgs[] = get_query_var('VST1');
$tgs[] = get_query_var('VST2');
$tags = implode(",",$tgs);
query_posts('tag='.$tags);
?>
now I just need to work it out so it displays the entire post, not just the post url, and then I’ll go from there. Any ideas?
I’ll give it a try, thanks!