我有这样的表单操作:
<form id="comment" name="comment" action="delivery_add_comment_submit.php?jobno=<?php $jobno?>">
但是当我转到页面时,网址是:
http://10.10.0.2/portal2/delivery_add_comment_submit.php?txtCommentor=bhunt&txtComment=lkn%3Bk&submit=Add+Comment
我正在从ASP切换到PHP,所以不确定是否需要注意一些不同的东西。 PHP是否自动将表单信息添加到URL?我可以不添加吗?jobno =&#34;行动结束?
答案 0 :(得分:1)
由于您没有在表单中定义方法,因此默认为GET。
将表单更新为
<form id="comment" name="comment" action="delivery_add_comment_submit.php?jobno=<?php $jobno?>" method="post">