This website requires JavaScript.
Explore
Help
Sign In
x
/
box-o-sand
Watch
1
Star
0
Fork
0
You've already forked box-o-sand
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
f4f448926d
box-o-sand
/
php-practice
/
web
/
html
/
wikipedia-tutorial
/
helloworld.php
10 lines
113 B
PHP
Raw
Normal View
History
Unescape
Escape
working through http://en.wikibooks.org/wiki/PHP_Programming, adding the requisite hello world page
2010-12-29 02:21:42 +00:00
<
?
php
hello world with variables and different output statements/functions
2010-12-29 02:23:26 +00:00
$string
=
"
Hello, World!<br />
"
;
echo
$string
;
print
$string
;
printf
(
"
%s
"
,
$string
);
working through http://en.wikibooks.org/wiki/PHP_Programming, adding the requisite hello world page
2010-12-29 02:21:42 +00:00
?>
Reference in New Issue
Copy Permalink