-

About embedding php

  Php pages are HTML pages that include embeded php command. Codes can be inserted in 2 ways:  

Surrounded by the script tag

<script language="php">

echo("wahooooooooo! It works");

</script>

Surrounded by <?php ?>

<?php

   echo("this is a simple php script");

?>