Jump to content

browsing other website throught our php script


apitto

Recommended Posts

[!--quoteo(post=369489:date=Apr 28 2006, 09:48 AM:name=apit)--][div class=\'quotetop\']QUOTE(apit @ Apr 28 2006, 09:48 AM) [snapback]369489[/snapback][/div][div class=\'quotemain\'][!--quotec--]
browsing other website throught our php script...how to do this
[/quote]
You could try an html iframe and set the src tag for the iframe using php:

[code]
$site_to_browse = "http://www.google.com";
echo "<iframe src='" . $site_to_browse . "'></iframe";
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.