There Is A"List & Search
Type". In " Search Form "there are many fields and after
clicking the button the query is processed in the field of
type"Query". Appeals to the value of the fields is made through the
type design:
... WHERE id_region = " $uri -
>getValue(reg_el)" …
Everything works fine! There was a
need to include a field of type "CheckBox" to be able to select
multiple values.
I did this, created a field with id=
"level_election", entered the necessary parameters:
http://prntscr.com/mrpmyq
Got:
http://prntscr.com/mrpqci
Now there was a question how to
process it in SQL query?
After you click the button in the
URL bar, it looks like this (when you select Level 1 b Level 3):
"...level_election%5B%5D=1&level_election%5B%5D=3...»
In an SQL query, it should be
something like:
... WHERE id_level in (……) …
I looked on the Internet, but it is
written through the processing of PHP, and how to do it directly?