आप प्रपत्र तत्वों की एक सरणी भेज सकते हैं, बस अपना मार्कअप इसमें बदलें:
<input type="checkbox" name="prices[]" value="Less than 10,000, ">
<input type="checkbox" name="prices[]" value="10,001 to 15000, ">
// etc...
फिर, PHP पक्ष:
$prices = $_POST['prices']; // this is now an array, work on it