A PHP Script Including HTML : Print « Development « PHP






A PHP Script Including HTML


<html>
<head>
<title>A PHP script including HTML</title>
</head>
<body>
<b>
<?php
    print "hello world";
?>
</b>
</body>
</html>


           
       








Related examples in the same category

1.Format our strings with line breaks to make our PHP code lines short
2.Variable interpolation
3.Demonstrating that the syntax of print is quite flexible
4.Use Print command to output string
5.Dynamically Setting and Accessing Variables