vote up 0 vote down star

Is there a way to break out of a frame using PHP? I have done it with JavaScript, but I would really prefer to use PHP instead. Thank you.

flag

2 Answers

vote up 6 vote down check

Frames are a client-side issue. Javascript is the solution, because it is a client-side scripting language that has awareness of the browsing context. Frames are meaningless on the server-side.

So, only client-side code can do this. Not PHP.

link|flag
Thanks. Wasn't really sure. Just wanted to see if there was a way to do it without using JavaScript just incase there's the slim chance a user has JavaScript disabled. Thanks. – Nate Shoffner Sep 3 at 8:51
vote up 1 vote down

PHP is server-side. It merely generates the HTML for a page. As such there is no way for it to determine whether its output is being shown in a frame.

The best PHP can do for you is outputting the Javascript code to break out of a frame.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.