我正在传递myid
到 url.php 页面并通过 ajax 请求加载它。同时,我想发布myid
到 url.php 以外的其他文件。像 x.php,y.php。
FB.api('/me?fields=movies,email,name', function(mydata) {
var email=mydata.email;
var json = JSON.stringify(mydata.movies.data);
var a = JSON.parse(json);
$.post('movies_db.php',{'myd':a, name: name, email: email, myid:myid}, function(data)
{
$.ajax({
url:'url.php'
,async: true
,type : 'POST'
,cache: false
,data : 'myid=' + myid //Here I post myid to url.php. How can I post it to other files like x.php , y.php on same moment?
,dataType: 'html'
,success: function(data){
$('body').html(data);
FB.XFBML.parse();
}
}
);
}
);
底线是我想在用户执行登录操作后在各个页面上使用当前的user_id
ei 。myid
更新
我将变量从 发布index.php
到url.php
。inside index.php: $.ajax({ url:'url.php' ,async: true ,type : 'POST' ,cache: false ,data : 'myid=' + myid //这里我把myid贴到url.php . 如何将它同时发布到 x.php 、 y.php 等其他文件? ,dataType: 'html' ,success: function(data){}
在 url.php 中,我将接收:
<?php
//sent has value "http://www.paulgraham.com/herd.html"
$url=$_POST['myid'];
?>
现在url.php
假设我也有:
<script>
function funInclude()
{
include "data1.php";
include "data2.php";
}
</srcipt>
所以 data1.php 和 daa2.php 都可以接收,myid
对吗?