Slide 3.b: PHP (Hypertext Preprocessor) Slide 4.d: PHP variables Home |
View source
in the browser—you will only see the output from the PHP file, which is plain HTML or text.
This is because the scripts are executed on the server before the result is sent back to the browser.
Basic PHP Syntax
A PHP scripting block always starts with <?php and ends with ?> .
A PHP scripting block can be placed anywhere in the HTML document.
|
A PHP file normally contains HTML tags, just like an HTML file, and some PHP scripting code. We have an example of a simple PHP script which sends the text “Hello, World!” to the browser: |
echo
statement to output the text “Hello, World!”.
Comments in PHP
In PHP, we use // to make a single-line comment or /* and */ to make a large comment block.
|