UK Webmaster Talk - Online Marketing - SEO


 

Frame detection

This is a discussion on Frame detection within the Php and MySQL forums, part of the Programming / Scripting / Coding category; Can you determine from PHP whether the page is being viewed within a frame ? I'm wanting to modify a ...


Go Back   UK Webmaster Talk - Online Marketing - SEO > Website Design & Development > Programming / Scripting / Coding > Php and MySQL

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Notices

Reply

 

LinkBack Thread Tools Display Modes
Old 17-10-2005, 22:51   #1 (permalink)
Super Moderator
 
Join Date: Mar 2005
Location: Herts, UK
Posts: 1,030
iTrader: 1 / 100%
monaghan is a jewel in the rough
Default Frame detection

Can you determine from PHP whether the page is being viewed within a frame ?

I'm wanting to modify a PHPBB template so that it will display the header differently depending on whether it's called as a wrapper on a Joomla site (no header etc...) and called directly (site header and a navigation link to the main site)
monaghan is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 23-10-2005, 22:37   #2 (permalink)
*poke* *poke*
 
Join Date: Apr 2005
Posts: 134
iTrader: 0 / 0%
mck9235 is on a distinguished road
Default

Quote:
Originally Posted by monaghan
Can you determine from PHP whether the page is being viewed within a frame ?

I'm wanting to modify a PHPBB template so that it will display the header differently depending on whether it's called as a wrapper on a Joomla site (no header etc...) and called directly (site header and a navigation link to the main site)
Well, if you know what the filename would be, you could.
PHP Code:
<?php
if(strpos($_SERVER['SCRIPT_NAME'], "index") != false)
{
//Blah
}
else
{
//Some more blah
}
?>
Otherwise I could think of a more complex way, by getting the reffering page, getting the contents, then trying to find a certain tag.
__________________
| - The Fast Track - |
Thanks to WMT for the new domain!
mck9235 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
detection, frame

Thread Tools
Display Modes

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 On
Pingbacks are On
Refbacks are On


All times are GMT +1. The time now is 18:17.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
UK Webmaster Forum © WebmasterTalk.co.uk | Design by Forbairt

Ad Management by RedTyger

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41