May 2003
Intermediate to advanced
592 pages
14h 28m
English
Writing the executed PHP code itself is only a part of the programming process. A secondary but still crucial aspect to dynamic Web site development involves commenting your code.
In HTML you can add comments (which are viewable in the source but not in the browser window) using (compare Figure 1.9 with Figure 1.10).

<!-- Comment goes here. -->
PHP supports three comment types. The first is similar to comments in shell scripts (a Unix thing) and uses the pound or number symbol (#).
# This is a comment.
The second stems from the C++ programming ...
Read now
Unlock full access