hello world in php



Hello World!


<?php
// single-line comments can be like this
# or even like this
/* multi-line comments can
be like this */ ?>

Examples




<?php
// The semicolon at the end of the statement is important!
?>
<?php
// print works like echo
print "Hello World!";
?>


<?php
// concatenation
echo "Hello" . " World!
";

// simple math
echo 2 + 3;

?>



// join my fb group :_
https://www.facebook.com/groups/1068660546488118/

0 comments:

Post a Comment