Tutorial 3 – PHP Comments
| In: 3. Comments | 16,588 views
Video Tutorial
Video Source Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <!-- HTML Single Line Comment Example -->
<?php
// PHP Comment Example
# PHP Comment Example 2
/* Multiple Lines Comment Example
*/
/*
echo "Hello World";
echo "Hello World";
echo "Hello World";
echo "Hello World";
*/
?> |
<!-- HTML Single Line Comment Example -->
<?php
// PHP Comment Example
# PHP Comment Example 2
/* Multiple Lines Comment Example
*/
/*
echo "Hello World";
echo "Hello World";
echo "Hello World";
echo "Hello World";
*/
?>