我有一个主文件
index.php
我在其中包括其他四个文件,例如
header_get_started.php,
content_main.php,
right_sec_home.php,
footer.php.
这是我的代码
"index.php"
<script src="js/ajax.js"></script>
<?php include_once('header_getstarted.php'); ?>
<?php include_once('content_main.php'); ?>
<?php include_once('right_sect_home.php'); ?>
<?php include_once('footer.php'); ?>
"header_getstarted.php"
<span class="select_input">
<?php
$sqlCmd = "some query";
echo combo('cmb_command','custom-class1 custom-class2','cmd_name','cmd_id','0',$sqlCmd,'sendpostmtu()' $width="style='width:250px;cursor:pointer;'")
?>
<input type="submit" name="" class="sub_bg" value="" onclick="get_request_by_command($('#cmb_command').val());">
</span>
在header_get_started.php
从选择框中选择任何命令时,我想将它的 id 分配给$_SESSION['id']
.
Onclick 选择框我有一个 ajax 请求,可以刷新主要内容(content_main.php
)。另外我希望在另一个页面中选择的 idright_sec_home.php
来刷新它的内容。
如何在 JS 文件中为第二页分配 php 会话 ID?
我的 JS 文件是
function get_request_by_command (commandId) {
var cmdTitle=$('#cmb_command :selected').text();
if(cmdTitle=="") {
cmdTitle='ABC';
}
$("#main_wrap").hide();
if(cmdTitle=='--Select--'){
$("#cmdTitle").html("");
}else{
$("#cmdTitle").html(cmdTitle);
}
$("#cmbs_cmd").val(commandId);
document.getElementById('request_list').innerHTML='<img src="images/loader.gif" />';
var strURL="request_by_command_tbl.php?id="+commandId;
var req = getXMLHTTP();
if (req) {
req.onreadystatechange = function() {
if (req.readyState == 4) {
// only if "OK"
if (req.status == 200) {
var ret = req.responseText;
$("#requestTitle").html("<span id='cmdTitle'>"+cmdTitle+"</span>);
$('#request_list').html('');
$('#request_list').html(ret);
$('#main').show();
$("#searchDiv").show();
} else {
alert("There was a problem while using XMLHTTP:\n" + req.statusText);
}
}
}
req.open("GET", strURL, true);
req.send(null);
}
}
通过使用这个 jQuery 函数,我创建了一个 ajax 请求,并将 id 发送到"request_by_command_tbl.php"
文件。
在"request_by_command_tbl.php"
我分配的文件中,
$_SESSION['id'] = $_REQUEST['id'];
我也希望$_SESSION['id']
在right_sec_home.php
同一时刻。$_SESSION['id']
他们在发送 ajax 请求之前在 jQuery 脚本文件中分配 php 的任何方式也是如此。
我的其他文件
"content_main.php"
<div id="request_list"> </div>
<div> </div>
<div id="add_space"></div>
我需要会话 ID 的右侧部分主文件
"right_sec_home.php"
<?php
function getRequestByMonth($month, $year, $id){
$que ="SELECT distinct(MS.date) FROM commands AS MC , ranks AS MR ,steady_tours AS MST, preferred_tours AS MPT, registration AS MMS where date_format(rm_date, '%c-%Y') = '".$month."-".$year."'
AND MMS.cmd_id ='".$_SESSION['id']."'
order by MMS.date";
$res = mysql_query($que);
while($rows[]=mysql_fetch_array($res)){}
foreach ($rows as $res):
if($res['date'] == "") continue;
$dt = date("Y-n-j", strtotime($res['date']));
$return[getDateB($dt)] = $res['date'];
endforeach;
return $return;
}
我希望这已经足够清楚了。有任何想法吗?
请帮忙。