HTML and PHP together : Php Script « Language Basics « PHP
- PHP
- Language Basics
- Php Script
HTML and PHP together
<html>
<head>
<title>HTML and PHP together</title>
</head>
<body>
<h1 align=center>
<?php
print "Welcome";
?>
</h1>
</body>
</html>
Related examples in the same category