So it’s time to start writing about PHP
Now we’ll write the first line of code in PHP.
[cc lang=”php”]
[/cc]
And now look at the code
< ? php – this is a sign for the server: the PHP code starts
echo “Hello world! This my first program!”; – echo command says display string.
? > – this is a sign for the server: the PHP code ends