"; $total = $total + $number1; echo "Total is:" . $total . "
"; } function AddOne($max){ return $max + 1; } echo "The max of " . $n . " plus 1 is: " . AddOne($n); /* 3 1+2+3 = 6 6 1+2+3+4+5 = 19 */ ?>