Ok, I am wanting to load a page while keeping the browser URL the same. In the past I just used frames to load the new page. However, now I am wanting to use PHP to load the page.
Example:
http://www.domain.com/helpdesk/index.php (shows in the browser URL)
However...
http://www.otherdomain.com/helpdesk/index.php?group=support (is what really loads).
I tried this by creating a PHP file with this code inside:
QUOTE
<?php
require("http://www.otherdomain.com/helpdesk/index.php?group=support");
?>
require("http://www.otherdomain.com/helpdesk/index.php?group=support");
?>
And it works to load the page while not changing to broswer URL, however, when clicking the links on the helpdesk, it doesn't work because it's still focused on the original domain.
So my question is: how can I do this (above) but set the document path so that the browser url stays the same but the entire helpdesk works because even though it's being loaded into a page on http://www.domain.com it knows to pull the source info from: http://www.otherdomain.com
Confused?
(I know what I want it's just hard to explain).
Thanks!
Priest
