Welcome Guest, Not a member yet? Register   Sign In
session problem
#23

[eluser]paulon[/eluser]
nice it fixed my problem regarding direct access to scripts

Code:
//javascript
var obj = {
get_user_online: function(){
   var url="<?=base_url()?>index.php/generals/getuseronline";
   $.post(url,{isAllowed:1},
      function(data){
         document.getElementById("divuserlist")[removed] = data;
      });        
}
}

that calls in
Code:
//php script
function getuseronline(){    
   if($_POST['isAllowed']>0){        
      $strReturn = 'Hello world';
   }else{
      $strReturn = 'No direct access allowed';
   }
echo $strReturn;
}

so when ever the link type in directly into the browser "http://localhost/CI/index.php/generals/getonlineuser"
it returns a "No direct access allowed'


Messages In This Thread
session problem - by El Forum - 12-17-2009, 11:20 PM
session problem - by El Forum - 12-18-2009, 12:03 AM
session problem - by El Forum - 12-18-2009, 12:07 AM
session problem - by El Forum - 12-18-2009, 12:12 AM
session problem - by El Forum - 12-18-2009, 01:00 AM
session problem - by El Forum - 12-18-2009, 01:22 AM
session problem - by El Forum - 12-18-2009, 01:28 AM
session problem - by El Forum - 12-18-2009, 01:29 AM
session problem - by El Forum - 12-18-2009, 02:16 AM
session problem - by El Forum - 12-18-2009, 05:14 AM
session problem - by El Forum - 12-19-2009, 05:20 AM
session problem - by El Forum - 12-19-2009, 05:50 AM
session problem - by El Forum - 12-19-2009, 06:19 AM
session problem - by El Forum - 12-20-2009, 06:55 PM
session problem - by El Forum - 12-20-2009, 09:32 PM
session problem - by El Forum - 12-20-2009, 09:38 PM
session problem - by El Forum - 12-20-2009, 10:31 PM
session problem - by El Forum - 12-20-2009, 10:46 PM
session problem - by El Forum - 12-20-2009, 11:15 PM
session problem - by El Forum - 12-20-2009, 11:31 PM
session problem - by El Forum - 12-20-2009, 11:39 PM
session problem - by El Forum - 12-21-2009, 12:10 AM
session problem - by El Forum - 12-21-2009, 12:43 AM
session problem - by El Forum - 12-21-2009, 01:02 AM
session problem - by El Forum - 12-21-2009, 01:05 AM
session problem - by El Forum - 12-21-2009, 01:10 AM
session problem - by El Forum - 12-21-2009, 01:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB