На данный момент мой html-код:
<form id = "query" method = "post" action = "search.php"> <input type = "checkbox" name = "col_list[]" value = "host">host</input> <input type = "checkbox" name = "col_list[]" value = "atom_name>atom_name</input> … <input type = "submit">Submit</input> </form>
И мой php-код:
$columns = $_POST["col_list"];
Есть ли способ, которым я могу получить последовательность, в которой отмечены флажки?