1

我的主页是 login.php

当用户进入此页面时,他进行了身份验证,然后重定向到start.php页面

我在这里将变量“userid”从 login.php 发布到 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()可以帮助我。但是我该如何使用它呢?

开始.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{ ..............
4

1 回答 1

0

我会用,

<?php
if(!isset($_POST['userid'])){
//redirection code goes here
}
?>

将其添加到页面顶部。

isset 函数正在检查用户标识元素是否已从前一页发送。请记住,这并没有考虑到任何像 CSRF 这样的安全性。

于 2013-11-11T16:29:56.407 回答