我的主页是
login.php
当用户进入此页面时,他进行了身份验证,然后重定向到start.php
页面
我将login.php中的变量'userid'发布到start.php这里。
FB.api('/me?fields = movies,email,name', function(mydata)
{
$.post( function(data)
{
var $form = $("<form id = 'form1' method = 'post' action = 'start.php'></form>");
$form.append('<input type = "hidden" name = "userid" value = "'+userid+'" />');
$('body').append($form);
window.form1.submit();
});
我想要的是,如果用户直接打开start.php
,那么他应该自动重定向到login.php。
我需要在start.php中为此添加多少代码?
ondocument.ready()
可以帮助我。但是我该如何使用它?
start.php
<?php
$user_id=$_POST['userid'];
?>
<html>
<head>
<script src = "http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type = "text/javascript"></script>
<link href = "css/button.css" rel = "stylesheet" type = "text/css">
<link href = "css/rateit.css" rel = "stylesheet" type = "text/css">
<style>
.header{
background-color:#0B6121;
border:2px solid #0B6121;
padding:10px 40px;
border-radius:5px;
}
.middle{
background-color:Yellow;
}
.left{ ..............
答案 0 :(得分:0)
我会用,
<?php
if(!isset($_POST['userid'])){
//redirection code goes here
}
?>
在页面顶部添加。
isset函数正在检查userid元素是否已从上一页发送。 请记住,这不会考虑像CSRF这样的任何安全性。