"; //float變數 $y = 10.5; echo $y; echo "
"; //文字變數 $txt = "Hello world!"; echo $txt; echo "
"; //數字相加 $a = 5; $b = 6; echo $a+$b; ?>