Te resultará más práctico usar un array de elementos, usando un mismo name, por ejemplo:
   
Código html:
Ver original- <input type="hidden" name="txtid[]" value="valor" /> 
- <!-- ... --> 
- <input type="hidden" name="txtid[]" value="valor" /> 
- <!-- ... --> 
- <input type="hidden" name="txtid[]" value="valor" /> 
- <!-- ... --> 
- <input type="hidden" name="txtid[]" value="valor" /> 
- <!-- ... --> 
Y al momento de recibir los datos lo recorres con un foreach:   
Código php:
Ver original- foreach ($_GET['txtid'] as $value) { 
-     /* Procesar $value */ 
- }