1 2 3 4 5 6 7 8 9
<?php $get_length=6; if( ( $get_length >= 8 ) and ( $get_length <= 11 ) ) { echo 'between 8 and 11'; } else { echo 'No'; } ?>
1
No