Tutorial 2 – PHP Syntax
| In: 2. Syntax | 24,422 views
Video Tutorial
Video Source Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | <html> <head> <title>The PHP Tutorial For Syntax</title> </head> <body> Hello Robert 1 <!-- Standard Form --> <?php echo "Hello Robert 2"; ?> <!-- Shorthand Form --> <? ?> <!-- Semicolon Example --> <?php echo "Hello Youtubers"; echo "Hello Robert"; echo "Hello World"; echo "What are you doing?"; echo "We are learning some PHP!"; ?> <!-- Whitespace Example --> <?php echo "Hello Youtubers"; echo "Hello Robert"; echo "Hello World"; echo "What are you doing?"; echo "We are learning some PHP!"; ?> </body> </html> |
1 Response to Tutorial 2 – PHP Syntax
trang web lưu trên desktop « blogbids
August 31st, 2012 at 4:44 am