JonnyThunder Posted July 24, 2008 Share Posted July 24, 2008 Sorry i read it wrong - you did have it the right way around! but remember, this only works if you're including / requiring your file. Quote Link to comment https://forums.phpfreaks.com/topic/116367-solved-come-from-one-page-only/page/2/#findComment-598508 Share on other sites More sharing options...
ronnie88 Posted July 24, 2008 Author Share Posted July 24, 2008 well i placed this at the top of the file where i am coming from: <? define(ALLOW_PAGE_LOAD, true); ?> then i placed this the file I am going to: <? if (!ALLOW_PAGE_LOAD) die ("You're not allowed to view this page directly"); ?> but nothing happens Quote Link to comment https://forums.phpfreaks.com/topic/116367-solved-come-from-one-page-only/page/2/#findComment-598513 Share on other sites More sharing options...
samshel Posted July 24, 2008 Share Posted July 24, 2008 AS JonnyThunder stated it will work ONLY IF you are including first file in the second one not going to second file from first one by clicking a button, URL or submitting a form or JS redirect. Quote Link to comment https://forums.phpfreaks.com/topic/116367-solved-come-from-one-page-only/page/2/#findComment-598519 Share on other sites More sharing options...
ronnie88 Posted July 24, 2008 Author Share Posted July 24, 2008 okay well i included the first file into the second one: <? include("flying2h.php"); if(!defined("SESAMOPEN")){ echo "What are you doing here? You're not allowed to be here, be gone you pest!"; exit(); } ?> but just keeps repeating lol Quote Link to comment https://forums.phpfreaks.com/topic/116367-solved-come-from-one-page-only/page/2/#findComment-598523 Share on other sites More sharing options...
Entanio Posted July 24, 2008 Share Posted July 24, 2008 I would guess to display the link you have something like: if($money_receive => time()){ echo "... money_claim.php"; } Why not just put this in the "money_claim.php" file? Quote Link to comment https://forums.phpfreaks.com/topic/116367-solved-come-from-one-page-only/page/2/#findComment-598525 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.