Include Bootstrap in a PHP application -


i'm learning php / html / css. today want use bootsrap.

i use basic html5 template called index.php in file want include footer this:

<html>  <head>      <meta charset="utf-8">      <link rel="stylesheet" type="text/css" href="ressources/bootstrap/css/bootstrap.css">      <link rel="stylesheet" type="text/css" href="ressources/css/style.css">      <script type='text/javascript' src="ressources/script/jquery.js"></script>      <script type='text/javascript' src="ressources/bootstrap/js/bootstrap.js"></script>      <title>index</title>  </head>    <body>      <div id="wrap">        <p>test</p>      </div>            <?php include('includes/footer.php'); ?>          </body>  </html>

but dont see footer in page. put "hello world" in footer.php


Comments