php表单提交

it2023-09-05  68

表单提交 form的action是写提交的地址的 method是写提交的方式的,有get和post两种

<? php <form action="xx.php" method="post"> <input type="text" name="username"> <input type="password" name="pass"> <textarea name="txt" id="" cols="30" rows="10"></textarea> <input type="submit"> </form> ?>
最新回复(0)