My first PHP page

$message

"; echo "

$headingmessage

" //single quotes do not expand variable, but you can //concatenate strings and variables using the . operator echo '

' . $headingmessage . ' in red

' echo '

' . $message . ' in SteelBlue

'; //these tags denote PHP code - close ?>

Right click/view source or F12 to see the actual HTML generated