Difference between revisions of "Template:Latest stable software release/PHPEdit"
Jump to navigation
Jump to search
imported>Bastienhofmann |
|||
| Line 1: | Line 1: | ||
| − | + | <!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> | ||
Revision as of 11:27, 9 August 2011
<!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>