Reply to Re: Newbie PHP question: 'hiding' code on server from View Source
Posted by axlq on 01/17/07 00:34
In article <1168984361.055415.211530@l53g2000cwa.googlegroups.com>,
Boldgeek <ap@mardona.com> wrote:
>
>PHP has a command called
>
>require ("page.php");
Or require_once("page.php"); which is useful if your included files also
include other files of the same name. Then php will ensure that only one
copy is pulled in.