mirror of
https://github.com/php/web-php.git
synced 2026-04-01 04:02:10 +02:00
16 lines
404 B
PHP
16 lines
404 B
PHP
<?php require "header.inc"?>
|
|
<h1>Functions</h1>
|
|
|
|
<p>By seperating commonly used navigation elements into functions,
|
|
we get "change it once, change it everywhere" ease of development.
|
|
|
|
<p>Used in conjunction with auto_prepend, we can make our functions
|
|
always available without extra code.
|
|
|
|
<?example('<?commonHeader("Title");?>
|
|
<p>This is my page.
|
|
<?commonFooter();?>
|
|
');?>
|
|
|
|
<?php require "footer.inc"?>
|