our approach
|
contact us
PHP Basics In Pictures
Basics
Variables
Numbers
User functions
Logic & Loops
Files
Insert comments
Using the text editor, create a new script with this code:
<?php
// A comment line to explain the code
# Another example of a comment line
/* A block of words can be commented this way. These comments do not affect the way the script works. */
print "Welcome to ACME AUTO!"; // A comment on the same line as your code.
?>
<< BACK
NEXT >>