私は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
。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 で私は recv します:
<?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
ますか?