You can switch modes if you want : HTML Cohabitation « HTML « PHP






You can switch modes if you want

<HTML>
<HEAD>
<?php
  $username = "User";
?>
</HEAD>
<BODY>
<?php
  print("$username<BR>");
?>
</BODY>
</HTML>

           
       








Related examples in the same category

1.Php and HTML Code Cohabitation