Would it be possible to run include files the same way frames work.
Example:
page.php
(Using yahoo for an example)
I would include "http://www.yahoo.com"
All of the links on that page would be turned to a variable and look like this "http://www.mysite.com/?page=http://www.yahoo.com/link.htm"
And then the script checks if there is $_GET['page'] and includes it if there is.
I've got that to work but the problem comes with forms.
I set the actions on all of the pages by adding:
[url]"http://www.mysite.com/?page="
after action= on the page
but then the page that comes up is "http://www.mysite.com/?var=1&var2=3" etc or "http://www.mysite.com/?page=var=1&var2=3"
When it should be "http://www.mysite.com/?page=http://www.yahoo.com/?var=1&var2=3"
In other words, I want to be able to browse the internet through an include file that is on a page on my server.
Any Ideas