Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
lab [2019/03/14 12:34]
fplmarques [Current Projects]
lab [2019/03/14 12:37]
fplmarques [Current Projects]
Line 34: Line 34:
 ====== Current Projects ====== ====== Current Projects ======
 \\ \\
 +<​!DOCTYPE html>
 <​html>​ <​html>​
 <​body>​ <​body>​
 + 
 <?php <?php
-echo strlen("​Hello world!"​);+// 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>​ </​body>​
 </​html>​ </​html>​
-\\