Remote Scripting

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
jafarsalam
Forum Newbie
Posts: 1
Joined: Tue Jan 04, 2005 6:11 pm

Remote Scripting

Post by jafarsalam »

Hi; Need help with remote scripting

I have a web site and want my visitors to click on a link which should take them to a different domain , yet I would like to keep them on my site so the url in the browser shows my domain. I have used the following code :

Code: Select all

<iframe name="miscframe" marginwidth="1" marginheight="1" border="0" frameborder="0" width="100%" height="100%" src="<?php if(empty($_POSTї'url'])) { echo "http://www.mysite.com"; }
else {echo $_POSTї'url']; }
?>">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>
the problem is :

IN IE it still shows the right sliding bar for the page and a grayed out slider for the actual browser. Is there a way to show the page so it is tranparent to the user.

thanks... :roll:


feyd | Help us, help you. Please use

Code: Select all

and

Code: Select all

tags where approriate when posting code. Read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url][/color]
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

you'll need frames, not inline frames.
Post Reply