gistlib
To print "Hello, world" in PHP, simply use the echo statement followed by the string you want to print. Here's an example:
echo
main.php<?php echo "Hello, world"; ?> 30 chars4 lines
<?php echo "Hello, world"; ?>
This will output:
main.phpHello, world 13 chars2 lines
Hello, world
gistlibby LogSnag