1
0
mirror of https://github.com/php/web-php.git synced 2026-04-01 04:02:10 +02:00
Files
archived-web-php/oreilly99/s_tools4.php3
1999-08-21 16:11:20 +00:00

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"?>