is it possible to sends two values in
<option value="<?=$halls['id']?>">
I want to send like this
<option value="<?=$halls['id']?><?=$halls['rang_from']?>">
here is the code.
<?php
//var_dump($_POST);
$location=$_POST['location'];
$hall_query=mysqli_query($connection,"select * from halls where location='$location' and status='enabled'");
while($halls=mysqli_fetch_assoc($hall_query))
{
?>
<option value="<?=$halls['id']?>"><?=$halls['rang_from']?> To <?=$halls['rang_to']?></option>
<?php
}
?>