0
如何在GET表單上更改我的URL。我的形式看起來像這樣更改GET表單上的URL參數
<form method="GET">
<input type="text" name="brand">
<input type="text" name="model">
<input type="text" name="condition">
<input type="text" name="transmission">
<input type="submit" name="search_car" value="SEARCH>
</form>
my url would look like this
http://example.com/car-listings.php?make=Toyota&model=Vios&condition=New&transmission=Manual&search_car=SEARCH
我想縮短我的網址參數,並改變它像這樣
http://example.com/car-listings.php?make=Toyota&model=Vios
有反正我可以修改GET方法我paraments?
使用POST而不是拿! –
這是一頁上的搜索頁面sir POST不會工作它不會更改URL參數 –
爲什麼要縮短它?你還期望得到其他參數,還是你想完全刪除它們? – Sean