Ads

Infile commenting

HTML Comment

CODE
<!--- This is an HTML Comment -->



PHP Comment

CODE
<?php
echo "Hello World! "// This will print out Hello World!
echo "You can't see my PHP comments!"// echo "nothing";
// echo "My name is Humperdinkle!";
?>



PHP Comments Method #2

CODE
<?php
/* This Echo statement will print out my message to the
the place in which I reside on.  In other words, the World. */
echo "Hello World!"
/* echo "My name is Humperdinkle!";
echo "No way! My name is Uber PHP Programmer!";
*/
?>

Sunday May 27, 2007 - 164 reads