I don't think so. All you have to go on is the $POST or $GET keys and values. All I can suggest is to use some sort of naming convention in the form element names:
<input type="text" name="txt_test1" ...
<input type="password" name="pwd_test2" ...
<input type="radio" name="rad_test3" ...
Then in your form-handler you could check the $POST/$GET array key via a substr() of the key, exploding it on "_", or whatever other method makes sense for the naming convention you choose.