PHP 执行完程序后想执行一个表单的提交动作。
我想执行完SQL 插入程序后,插入成功执行一个表单的提交SUBMIT动作。应该如果写呢各位高手!谢谢各位!
1 2 3 | <code> if ( $result ){
这里面应该如何写呢!
}</code>
|
1 2 3 4 | <code><form action= '/1.php' name= 'form2' method= 'post' >
<input type= 'text' name= 'name' value= '' >
<input type= "submit" name= "submit" value= "UPLOAD" >
</form></code>
|