PHP Lesson #1


SUBMITTED BY: Guest

DATE: April 30, 2013, 12:31 a.m.

FORMAT: PHP

SIZE: 358 Bytes

HITS: 998

  1. PHP Lesson #1
  2. All PHP must start with <?php and end with ?>
  3. Using // in the code signifies that there is a comment on that line only
  4. All statements in the code must end in ; so that the compiler knows how to handle events.
  5. E.g.
  6. <?php //must start with this
  7. Echo 'Hello'; //all statements must end with ;
  8. ?> //must end with this

comments powered by Disqus