<?php $number = 5; If ($number < 10) { echo “$number is less than ten”; } ?>
I don't understand how i keep getting this error ....this is directly from a tutorial. Why do i keep getting parse error....
It's from the quotes. Use " instead.
<?php $number = 5; If ($number < 10) { echo "$number is less than ten"; } ?>
thanks...