Skip to content

Instantly share code, notes, and snippets.

@sarkarshuvojit
Last active December 6, 2017 20:33
Show Gist options
  • Save sarkarshuvojit/467fa20a6e7d694a116e8c901e54837e to your computer and use it in GitHub Desktop.
Save sarkarshuvojit/467fa20a6e7d694a116e8c901e54837e to your computer and use it in GitHub Desktop.
Structure Core PHP Sample Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Website</title>
</head>
<body>
<?php include('views/sub-views/header.php'); ?>
<section id="main">
<?php include('views/sub-views/sidebar.php'); ?>
<section id="content">
<!-- content begins -->
<!-- content ends -->
</section>
<?php include('views/sub-views/footer.php'); ?>
</section>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment