Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // index.php
- <?php
- include "other/page.php";
- include "other/stuff.php";
- page_begin();
- page_head_begin();
- page_title("My Title");
- page_head_end();
- ?>
- blah
- <?php
- page_end();
- ?>
- // page.php
- <?php
- function page_begin() {
- echo "<!doctype html>\n<html>\n";
- }
- function page_head_begin() {
- echo "<head>\n";
- }
- function page_title($title) {
- echo "<title>$title</title>\n";
- }
- function page_css($css) {
- echo "<link rel='stylesheet' type='text/css' href='$css'/>\n";
- }
- function page_js($js) {
- echo "<script type='text/javascript' src='$js'></script>\n";
- }
- function page_head_end() {
- echo "</head>\n<body>\n";
- }
- function page_end() {
- echo "</body>\n</html>\n";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment