vote up 2 vote down star

I am wondering how I can break up my index.php homepage to multiple php pages (i.e. header.php, footer.php) and build a working index.php page using those separate php pages. I know WordPress uses this with different functions like:

GetHeader();
GetFoodter();

But when I tried to use those functions, it errors. I am guessing they are not native functions to PHP.

What would I need to do to get this functionality?

flag

7 Answers

vote up 8 vote down check
include 'header.php';

include 'footer.php';
link|flag
vote up 0 vote down

Also, if i recall correctly, you can also use

<?php
require('filename');
?>

the difference being, if php can't find the file you want to include, it will stop right there instead of keep excecuting the script...

link|flag
vote up 0 vote down

If your server is configured accordingly, you can use PHP's built in auto append/prepend settings and set it in a .htaccess file:

php_value auto_prepend_file "header.php"
php_value auto_append_file "footer.php"

Info:
www.php.net/manual/en/configuration.changes.php#configuration.changes.apache
www.php.net/ini.core#ini.auto-prepend-file
www.php.net/ini.core#ini.auto-append-file

link|flag
vote up 1 vote down

The include() statement includes and evaluates the specified file.

so if you create index.php as:

<?php
include("1.php"); include("2.php"); include("3.php");
?>

processing it will combine three php files (result of parsing them by php) into output of your index.php ... check more at http://pl.php.net/manual/pl/function.include.php

link|flag
vote up 2 vote down

Go with an MVC framework like Zend's. That way you'll keep more maintainable code.

link|flag
Although Zend is rather heavyweight, it's an option. I would recommend looking at frameworks, however, such as CakePHP, symfony, and CodeIgniter. – Thomas Owens Oct 31 '08 at 19:25
Awesome, thanks for the recommendation. This isn't really that big of a site so I think the above [include 'file-name.php';] is going to be good enough. I will definitely have to read up on CakePHP and Zend. – JoshFinnie Oct 31 '08 at 19:27
I think that would be a good thing (and as Thomas suggests, don't limit yourself to Zend). If I had a dime for each time I thought "this is just going to be a little site..." :-P – Jilles Oct 31 '08 at 22:12
vote up 0 vote down

You could do the following:

<?php
    include('header.php');
    // Template Processing Code
    include('footer.php');
?>
link|flag
vote up -1 vote down

Use include statements to just include those files to your Page

I think it's

include '[filename]'
link|flag
Actually, in PHP it is include('filename'); – teamnxt Dec 28 '08 at 3:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.