Jump to content

Recommended Posts

I suggest adding something that looks at the $_SERVER['HTTP_REFERER'] variable. If that's not the page that has the iframe, kill the app. Otherwise let it run. Like this:

 

<?php
if ($_SERVER['HTTP_REFERER']!="pagewithiframe.php") die("This page cannot be loaded directly");
?>

I suggest adding something that looks at the $_SERVER['HTTP_REFERER'] variable. If that's not the page that has the iframe, kill the app. Otherwise let it run. Like this:

 

<?php
if ($_SERVER['HTTP_REFERER']!="pagewithiframe.php") die("This page cannot be loaded directly");
?>

Hmm, my pages are dynamic, so never know what the url can be. Should I do a strpos to check if my domain is in the HTTP_REFERER? Or maybe a better way?

you could set a $_SESSION variable for the page.  a simple true or false variable that is defined on the parent page..containing the iframe.

 

and then on the iframe you'll probably have to check, destroy, etc the session and what not to keep someone from loading that php file later on.

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.