Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可以处理输入的表单。我只需单击一次提交后如何使其连续运行?
我想知道方法。
说我有代码:
<form name="form1" action="" method="post"> <input type="text" name="tfcari" /> <input type="submit" name="btcari" /> </form> <?php if (isset($_POST['btcari'])) { get(..); ?>
谢谢。