Echo
echo sends text to the page. echo 'Hello'; echo $name; You can echo several values: echo $a, $b; No return value. print is similar but returns 1 — almost nobody cares. Use echo.
<?= $name ?> is short echo inside HTML. Need short_open_tag / PHP 5.4+ echo short tag. Fine in modern PHP.
Trap — echo array — Array to string conversion. Use json_encode or a loop. Trap: missing quotes around strings.
Exam tip
echo 'Hello'; Don’t echo arrays.