我如何允许用户添加例如他需要的带有数字的书籍,这个需要没有限制,所以如果他点击添加另一个网页将打开一个新的输入字段。最后他会点击提交按钮。
<html>
<head></head>
<body>
<?php
if(isset($_POST['submit']))
{?>
<td><input type="submit" value="Add another"/></td>
<?php } ?
?>
<form action="" method="post">
<table>
<tr>
<td><input type="text" name="need"/></td>
<td><input type="submit" value="Add another"/></td>
</tr>
</table>
<input type="submit" value="submit"/>
</form>
</body>
</html>