In PHP, the ______ statement can output one or more strings.

  • echo
  • print
  • printf
  • display
In PHP, the echo statement can output one or more strings. It is commonly used to display strings and variables. You can use echo to output plain text, HTML code, or a combination of both. Multiple strings can be concatenated with the dot (.) operator within the echo statement. Learn more: https://www.php.net/manual/en/function.echo.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *