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
Next revision Both sides next revision
lab [2019/03/14 12:31]
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
-print "<​h2>​PHP is Fun!</h2>";​ +// This is a single-line comment
-print "Hello world!<​br>";​ +
-print "​I'​m about to learn PHP!";​ +
-?>+
  
 +# 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>​
-\\