Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
lab [2019/03/14 12:38]
fplmarques [Current Projects]
lab [2019/03/14 12:45] (current)
fplmarques [Current Projects]
Line 34: Line 34:
 ====== Current Projects ====== ====== Current Projects ======
 \\ \\
-<​html>​ 
-<​body>​ 
-  
-<?php 
-// This is a single-line comment 
  
-# This is also a single-line comment 
- 
-/* 
-This is a multiple-lines comment block 
-that spans over multiple 
-lines 
-*/ 
- 
-// You can also use comments to leave out parts of a code line 
-$x = 5 /* + 15 */ + 5; 
-echo $x; 
-?> 
-  
-</​body>​ 
-</​html>​