[nycphp-talk] php include file question
Jon Baer
jonbaer at jonbaer.net
Mon Mar 31 13:06:38 EST 2003
You should turn on error reporting to see what it says (if you get a blank
page) ...
You might also want to put "." before the file, i.e.
<script language="php">
include("./file.php");
</script>
Or adjust your include_path in php.ini, i.e.
include_path = ".;c:\\php\\includes;c:\\php\\pear"
- Jon
----- Original Message -----
From: "Deidra McIntyre" <lists at redibishosting.com>
To: "NYPHP Talk" <talk at nyphp.org>
Sent: Monday, March 31, 2003 9:52 AM
Subject: [nycphp-talk] php include file question
> List,
>
> I'm breaking up my html site into includes (header, copyright, etc.).
> Within the HTML documents that call the include files, I have the
> appropriate php tags (i.e. <? include("copyright.html"); ?> . All of the
> includes (i.e. copyright.html) are sitting in the same directory as my
> html pages (i.e. index.html). PHP is installed.
>
> So, why, no matter what I do, don't the include files parse into my
> document? I have tried to changed the include extensions from .html to
> php to .inc. None parse. Most of my includes contain basic HTML (no php)
> like <p>Copyright © 2003. All Rights Reserved.</p>.
>
> Am I doing something wrong? Or does my technician need to change something
> in the server configuration (if so what)?
>
> Thanks,
> Deidra
>
>
>
>
> --- Unsubscribe at http://nyphp.org/list/ ---
>
>
>
More information about the talk
mailing list