[PHP] including html pages inside an interface

2001-04-24 Thread Romulo Roberto Pereira
Hello! This is the scenario: (a) I have an interface that will be the main interface with the user (b) I have a mail server (Mirapoint) that has a web interface (c) The web interface for the Mirapoint server is inside frames This is the problem: (a) let's say that I log in as a user from

[PHP] including html pages inside an interface

2001-04-24 Thread Romulo Roberto Pereira
Hello! This is the scenario: (a) I have an interface that will be the main interface with the user (b) I have a mail server (Mirapoint) that has a web interface (c) The web interface for the Mirapoint server is inside frames This is the problem: (a) let's say that I log in as a user from

Re: [PHP] including html

2001-03-02 Thread Yasuo Ohgaki
Marcos wrote: index.php include ('info.html) I think readfile($inputFileName); would be a better option. FYI You might want to add headers using header() with readfile(). PHP does not parse with readfile(), so it is more efficient. i.e. PHP does not look for ?php

[PHP] including html

2001-03-01 Thread Marcos
hi, i would like to put all the content from a html file into a php. (like working with SSI) index.php include ('info.html) is this right? regards, marcos [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [PHP] including html

2001-03-01 Thread Harshdeep S Jawanda
Marcos wrote: index.php include ('info.html) I think readfile($inputFileName); would be a better option. -- Regards, Harshdeep Singh Jawanda. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: [PHP] including html

2001-03-01 Thread Josh Reynolds
On Thu, 1 Mar 2001, Marcos wrote: hi, i would like to put all the content from a html file into a php. (like working with SSI) index.php include ('info.html) is this right? regards, marcos [EMAIL PROTECTED] ?php include "page.html" ? -- PHP General Mailing