我的主页是
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{ ..............