necesito que cada vez que hago click en el link me cree un input, hice esto pero se que esta mal, me pueden dar un ejemplo.
Mil Gracias.
Código:
<?php
session_start();
$_SESSION['contador'];
if($_GET['s']== 1)
$_SESSION['contador']++;
echo $_SESSION['contador'];
?>
<form action="session.php" method="get" enctype="text/plain">
<table>
<tr>
<td><input type="text" name="nombre"> <a href="session.php?s=1" >crear nuevo</a></td>
<?php
if ( $aux<= $_SESSION['contador']) {
?>
<td><input type="text" name="nombre"> <a href="session.php?s=1" >crear nuevo</a></td>
<?php }
$aux++;
?>
</tr>
</table>
</form>