A PHP Script Including HTML : Print « Development « PHP
- PHP
- Development
- Print
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