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
Previous revision
Last revision Both sides next revision
lab [2019/03/08 11:23]
fplmarques [Iniciação Científica/Undergraduate Research]
lab [2019/03/14 12:38]
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>​