A Simple "Hello World" Script : echo « Utility Function « PHP






A Simple "Hello World" Script

 
<HTML>
<HEAD><TITLE>My First PHP Script</TITLE></HEAD>
<BODY>
<?php

       echo "Hello, world!"; 

?>
</BODY>
</HTML>
  
  








Related examples in the same category

1.Add lines and spaces to textarea
2.Correct escaping of special characters
3.Formatting of Numeric Data
4.Key-value array elements
5.Echo out html tags
6.Enclosure html into a string and echo out
7.echo versus print
8.how arrays embedded in strings will be converted.
9.echo is more useful because you can pass it several parameters
10.embedded variables are handled when the string is created with single or double quotes.