Вот так сделайте и все будет автоматически формироваться.
На сервере примете массив $_GET['order']
<style>
button.link{
border: none;
padding: 0;
color: blue;
background: none;
text-decoration: underline;
cursor: pointer;
}
button.link:hover{
text-decoration: none;
}
</style>
<form action="script.php" method="GET">
<div><input type="checkbox" name="order[]" value="233" /></div>
<div><input type="checkbox" name="order[]" value="234" /></div>
<div><button class="link">Перейти</button>
</form>