Hi, I'm learning PHP too and have a little trouble with this but i figured it out
1.- You have to save it as a .php file, .html doesn't work. (just in case)
2.- I supose you remove the first space on the br tag, like this
or you can use old br tags
3.- You can use both syntax like this:
Code:
echo "This circle has... <br>";
or
Code:
echo "A circumference of " . $circumference . " <br / > ";
both work the same, at least on this example
Hope this can help you some and lets continue learning!!
