Folks:
I was thinking this would be pretty straightforward but it doesn't seem to be. I'd like to insert a full HTML page into a php page. Some notes:
The php page should embed the HTML page.
The HTML page being embedded is on another server.
The HTML page has local hyperlinks within it.
I do not want to use absolute hyperlinks.
When I use the php "insert" option, the HTML page comes up but the local hyperlinks no longer work. A link that once pointed to a file in the local directory on the original server (say http://www.html.com/phpcall.html) turns into a local hyperlink on the server with the php file (http://www.php.com/phpcall.html). Needless to say, the link no longer works.
Is there a way to preserve the links without using absolute URLs?
Any help with this would be really appreciated.