I need a search query. Age value 10 - 15 , 20 - 25 , 17 - 19 , 12 - 59 , 2 - 19 , 18 - 40 , 10 - 20
I send 10 - 25 and I want to get results by matching the numbers
<?php
$Age1 = 10;
$Age2 = 25;
$Age = $Age1." - ".$Age2;
$stmt = mysqli_query($con,"SELECT * FROM job_post_p1 where Age LIKE '%" . $Age . "%'");
?>
Thanks to All
job_post_p1table?