Jump to content
  • 0

Форма поиска


solovin1986
 Share

Question

Представьте себе форму поиска или сортировки на которой есть select-ы и input-ы (type=text)

Вопрос как вы делаете чтобы после сабмита они были заполнены исходящими значениями?

Может у кого то есть универсальный класс или вы используете javascript, печенье. Просто надоело при каждой задачи туда их впихивать структурным методом (то есть не ООП).

Ajax не катит так как не всегда его использую.

Edited by solovin1986
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

В чем проблема написать? Не так уж и много вариантов на мой взгляд...


<input name="str" type="checkbox" <?php if(isset($_GET['str'])) { echo 'checked="checked"'; } ?> value="1" />

<input name="str" type="radio" <?php if(isset($_GET['str']) && $_GET['str']==1) { echo 'checked="checked"'; } ?> value="1" />
<input name="str" type="radio" <?php if(isset($_GET['str']) && $_GET['str']==2) { echo 'checked="checked"'; } ?> value="2" />

<input name="str[]" type="checkbox" <?php if(isset($_GET['str']]) && in_array (1, $_GET['str']])) { echo 'checked="checked"'; } ?> value="1" />
<input name="str[]" type="checkbox" <?php if(isset($_GET['str']]) && in_array (2, $_GET['str']])) { echo 'checked="checked"'; } ?> value="2" />

Функцию для проверки сделать не сложно...

Edited by stars
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy