"; for($i=$start;$i<=$end;$i++) { if(isPrime($i)) { echo $i."☺☻♥♦♣♠•◘▌"; $count++; } } echo"
total number of prime number between $start and $end are:
".$count; } $start=1; $end=10; displayPrimeInRange($start,$end); ?>