This line make no sense at all
<img src="typeicon:<?echo $item['typeID']?>" width="64"><A HREF="showinfo:<?echo $item['typeID'];?>"><?echo $item['typeName']?></A>: <input type="radio" align="absmiddle" name="Selection" value="<?echo $item['itemID']?>"><br>
The image src is "typeicon:<?echo $item['typeID']?>"
The href is "showinfo:<?echo $item['typeID'];?>"
And then you have no closing </form> tag.
So first the "typeicon:" and the "showinfo:". Those just can not be part of any valid file name. If you wish to pass a value via GET (in a url) you would do it like myfile.php?itemid=<?echo $item['typeID'];?>.
If you wish to pass the data via the form make the submit button the item that is clicked not the <a href="">. Or use javascript to submit the form when the <a href=""> is clicked.