+1  A: 

Simply check $_GET for the first time:

if(isset($_GET['key'])) { $cookievalue = $_GET['key']; }
if(isset($_COOKIE['cookname'])) { $cookievalue = $_COOKIE['cookname']; }

switch ($cookievalue) { case hmm01: echo "abc"; break; case hmm02: echo "def"; break; case hmm03: echo "ghi"; break; default: echo "hello"; } ?>
Alec Smart
Great thanks Alec - that worked. Damn I should really have figured that one out :~
lokust
A: 

if (specific key/value in query string) $_COOKIE['cookname'] = "some value";

And learn some HTTP

Col. Shrapnel