web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

clubs.php 339B

12345678910111213
  1. <?php
  2. ob_start(); // Start reading html
  3. ?>
  4. <div class="inner">
  5. <h1>Page en construction, repassez plus tard !</h1>
  6. </div>
  7. <?php
  8. $pageContent = ob_get_clean(); // Store html content in variable
  9. $pageTitle = "Les clubs";
  10. include("includes/template.php"); // Display template with variable content
  11. ?>