Hola, Captainfercho ¿que tal?
Prueba así
Código PHP:
<script type="text/javascript">
function mostrarInput (txtbox) {
elemento = document.getElementById("c_"+txtbox);
if (elemento.type == "hidden")
{
elemento.type = elemento.type ="text"
}
}
</script>
</head>
<body>
<form name="creatext">
<table align=center border="1">
<tr>
<td>Campo</td>
<td>Texto</td>
<td>Crear Campo</td>
</tr>
<tr>
<td><input type="hidden" id="c_t1" name="c_t1" /></td>
<td>Un texto cualquiera</td>
<td><input type="button" value="Crear Campo" id="t1" onclick="mostrarInput(this.id)" /></td>
</tr>
<tr>
<td><input type="hidden" id="c_t2" name="c_t2" /></td>
<td>Un texto cualquiera</td>
<td><input type="button" value="Crear Campo" id="t2" onclick="mostrarInput(this.id)" /></td>
</tr>
</table>
</form>
Gracias a David el Grande
Suerte