我的表单有问题
<form action="index.php?id=fakturysprzedaz" method='GET'>
当我使用表格页面地址的一些输入后:“index.php&amp; get = value”。我想得到像这样的“index.php?id = fakturysprzedaz&amp; get = value”。我的表单标题有什么问题?
答案 0 :(得分:4)
在<form>
内添加隐藏的输入字段。
<input type='hidden' name='id' value='fakturysprzedaz' >