Thank you both for your prompt responses.
and NogDog, I have found your statements to be so true! Yet I still over think it, ha!
Anyhow, I have removed the loops and instead I've opted for the in_Array() "function" I'm not sure if I'm doing it right. I just looked it up and tried implementing it. I will continue working on it. But in the interim, I am not sure at this point what to pass to the switch now that I no longer use the $clickCard as a variable.
Below is a snippet of the updated version: (it doesn't seem to be catching the match even when I tried passing nothing in the switch, or swapping out the variable for the $_POST['submitted'])
$testEmps = array ('firstName', 'secondName', 'thirdName', 'fourthName', 'fifthName', 'sixthName', 'seventhName', 'eighthname');
if (isset($_POST['submitted']))
{ // testing if form submitted
if(in_array($_POST['submitted'],$testEmps))
{ // find a match in the array
switch($testEmps) {
...etc ...etc ....etc