Template:Latest stable software release/PHPEdit
< Template:Latest stable software release
Jump to navigation
Jump to search
Revision as of 11:27, 9 August 2011 by 180.215.178.172 (talk)
<!DOCTYPE html> <html>
<head>
<meta charset="utf-8" />
<title>PHP Test</title>
</head>
<body>
<?php
echo 'Hello World';
/* echo("Hello World"); works as well,
although echo is not a function, but a
language construct. In some cases, such
as when multiple parameters are passed
to echo, parameters cannot be enclosed
in parentheses. */
?>
</body>
</html>