View Full Version : PHP Includes


Xiphias
05-13-2003, 08:43 PM
i know I have seen this before, and I want to know how to do it... I've sarched and searched and esarched but I can't find out how...... i don't want to use SSI because my site functions on PHP

Dude128
05-13-2003, 09:28 PM
<?php include 'filename.ext'; ?>

http://www.php.net/manual/en/function.include.php

Xiphias
05-13-2003, 09:31 PM
Merci (I think that is thanks in French?)

Coconut99
05-13-2003, 09:31 PM
Also, you could try searching Google for "PHP Includes Tutorial". There's a bunch. The one I had the most success with was: http://www.anime-oblivion.com/web.php?AO=phptutorials.

Xiphias
05-14-2003, 03:12 AM
thnx everyone now got my site fully coded with PHP!

designhazard
05-18-2003, 10:34 AM
you could also use this: <?php require('filename.ext'); ?>