include is only inserted after the body, and would like to be included before

-1

I use a file named head.php to add the meta tags to each page in an easier way! But include is only included after body , when in fact I need it to stay before body !

Base code: ...........................................

Basecodeofthepagehead.php

Once you're in the browser:

    
asked by anonymous 24.05.2015 / 03:24

2 answers

0

I did not understand your question right, but here is an example:

<html>
   <head>
      <?php include "metas.php"; ?>
   </head>
   <body>
     ...
   </body>
</html>
    
24.05.2015 / 03:27
-1

Use file_get_contents along with echo :

<html>
    <head>
        <?php echo file_get_contents('head.php'); ?>
    </head>
</html>
    
24.05.2015 / 04:06