I have 35.php that includes common menu for my website. 36.php page should display the menu by using include() Why doesn't this work?
35.php is shown below;
<?php
   echo "<a href="index.htm">Home</a>
   <a href="aboutphp.html">PHP</a> 
   <a href="abouthtml.html">HTML</a>
   <a href="aboutcss.html">CSS</a> <br />";
?>
36.php is shown below;
enter code here
  <html>
  <body>
      <?php include("35.php"); ?>
      <p>About Menu is imported from 35.php file</p>
  </body>
  </html>

 
    