A PHP Script Including HTML : Php Script « Language Basics « PHP
- PHP
- Language Basics
- Php Script
A PHP Script Including HTML
<html>
<head>
<title>A PHP Script Including HTML</title>
</head>
<body>
<div><b>
<?php
print "hello world";
?>
</b></div>
</body>
</html>
Related examples in the same category