0
推送斜線我有一個窗體,當你點擊搜索時,它會用%2F
而不是斜線寫出網址。我怎樣才能解決這個問題?用斜槓向網址
代碼:
<form name="cdsearch" method="get" action="">
<input type="hidden" name="route" value="database/comics" /> <-- This is where the slash is needed
<input style="width: 100%;" type="text" name="q" value="<?php echo $q ?>" /><br/>
<input style="width: 100%;" type="submit" value="Search Comic Database" />
</form>
這就是所謂的URL編碼。使用url_decode – Chris
我會在哪裏使用這個? – rackemup420