Create a while statement that prints every odd number between 1 and 49
<? $num = 1; while ( $num <= 49 ) { print "$num<br />"; $num += 2; } ?>