Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Useing PHP to control iFrame
Old 08-05-2004, 05:57 PM Useing PHP to control iFrame
Junior Talker

Posts: 2
Trades: 0
how can i change the iFrame content depending on what is in the variable $page?
IWantThemango is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 08-05-2004, 06:20 PM
Unknown.

Posts: 1,693
Trades: 0
If you want it so you type... mypage.php?page=name

this should do the job...

PHP Code:
<?php

//Get Page variable
$page $_GET['page'];


//If no page is specified
if( !$page ) {

$framelocation "main.htm";

}

if( 
$page == 'google' ) {

$framelocation "http://google.com";

}

if( 
$page == 'yahoo' ) {

$framelocation "http://yahoo.com";

}
//Then add the $framelocation variable to the iframe tag
?>

<html>
<body>

<iframe height="400" width="600" src="<?php echo $framelocation ?>"> </iframe>

</body>
</html>
Or alternatively if you want it like...
mypage.php?page=name.htm or...
mypage.php?page=http://google.com

This would do the job...

PHP Code:
<?php

//Get Page variable
$page $_GET['page'];


//If no page is specified
if( !$page ) {

$page "main.htm";

}

//Then add the $framelocation variable to the irframe tag
?>

<html>
<body>

<iframe height="400" width="600" src="<?php echo $page ?>"> </iframe>

</body>
</html>
Hope this helps

Need any more help just ask

-James
Dark-Skys99 is offline
Reply With Quote
View Public Profile
 
Old 08-05-2004, 08:26 PM
Junior Talker

Posts: 2
Trades: 0
thanks man this is exactly what i wanted. i knew it was something like that, just couldent figure it out. Thanks again ; )
IWantThemango is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Useing PHP to control iFrame
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.17490 seconds with 12 queries