私はフォームを持っています、それはこれです
<form method="get" action="<?php bloginfo('url'); ?>">
<input name="date-beginning" type="text" class="datepicker" />
<input name="date-end" type="text" class="datepicker" />
<input name="s" type="text" />
<input type="submit" value="Ok" class="botao-pequeno botao-pequeno-input" />
</form>
ユーザーがすべてのフィールドを送信すると、次の応答が返されます: http://myblogurl.com/?s=example&date-beginning=05/05/05&date-end=07/07/07
彼が入力しない場合、たとえば、date-beginning
取得するフィールドhttp://myblogurl.com/?s=example&date-beginning=&date-end=07/07/07
私が望むのは、たとえば、彼がフィールドに入力しない場合date-beginning
、フォームは引き続き送信されますが、次のように変数は送信されないということです: http://myblogurl.com/?s=example&date-end= 07/07/07
それを行う方法はありますか?どのように?