What does echo mean in php?

1 answer

Answer

1175299

2026-05-17 16:20

+ Follow

With echo you can send a string of text, or the return of a function or variable (true, false, null etc.) to the browser of the user.

For example:

$var = 'Hello world!';

echo $var;

?>

This will return "Hello world!" to the user.
It is one of the commands to print or show something on user screen.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.