tags:

views:

33

answers:

2

Does anyone know how to generate on the fly page that contain iframe of specific site That his address appears after the main site address ?

SAMPLE

http://news.fresh.co.il/shownews.php?link=http%3A//www.cnn.com

+1  A: 

Sounds like you want to just use HTML frames and have one frame's source be the contents of $_GET['link'], no?

pssdbt
+1  A: 

Check this: http://stackoverflow.com/questions/736730/how-does-the-diggbar-work you can replace src="http://url.to/page" with src="<? echo $_GET['link']?>;"

Vasily Korolev