A .php page checks if the referer is from xdomainname.com, if Yes i iframe page X if not i iframe page Y.

The problem is i want to redirect to another page if the .php page is refreshed (iframe page X/Y on first load only).

I tried adding Cache headers but the .php page is still iframing page X/Y -depending on referer.

header( 'Expires: Sat, 26 Jul 1997 05:00:00 GMT' );
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
header( 'Cache-Control: no-store, no-cache, must-revalidate' );
header( 'Cache-Control: post-check=0, pre-check=0', false );
header( 'Pragma: no-cache' );

Other than cookies, is there any workarround to clear referer post data or detect a first page load (maybe creating a hidden field and detecting its value on a second page load)?

link|improve this question
feedback

1 Answer

if (!isset($_SESSION['pageload'])) {
$_SESSION['pageload'] = "true";
header("Location:somepage.php");
} else {
unset($_SESSION['pageload']);
}
link|improve this answer
I don't want use cookies, i'd like to know how detect first page loads using hidden fields or maybe detecting post data? – Kevin Jul 2 '11 at 21:53
feedback

Your Answer

 
or
required, but never shown

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