Skip to content

PHP Snippets: Echo

PHPThis post is part of the PHP Snippets series where I will be covering the basics of developing in PHP.

Almost everything you write in PHP ill have an output to the user; the simplest way of doing this is to use the in-built echo function (which you can use with or without parentheses).

The below example is a simple echo to output one line of text:

echo 'Hello world!';

You can output multiple…

Continue Reading azurecurve’s Article on their blog

PHP Snippets: Echo

This post is part of the PHP Snippets series where I will be covering the basics of developing in PHP. Almost everything you write in PHP ill have an output to the user; the simplest way of doing ‎…

Blog Syndicated with azurecurve’s Permission

Leave a Reply