我想在JSON页面中使用PHP会话值

时间:2014-03-25 09:05:19

标签: php json

$(document).ready(function() {
    $("#Calendar").eventCalendar({
        eventsjson: 'event.default.json.php',
        jsonDateFormat: 'human'
    });
});

加载页面时,我调用事件calendar.in此文件event.default.json.php从数据库中获取值并使用JSON_ENCODE返回值。现在我想获取基于数据的数据 关于PHP会话值。 任何人都可以告诉如何将会话值传递给event.default.json.php页面。

**event.default.json.php**
    header('Content-type: text/json');
    class Json{
        public function getApp(){
            $sql=mysql_query('select * from p,a WHERE p.id=a.customer_id');
            $i=0;
            while($row=mysql_fetch_assoc($sql,MYSQL_ASSOC)){ 
                $json[$i]['description'] = $row['fname']."'s Appointmet" ;
                $i++;
            } 
            echo json_encode($json);
            echo json_encode($_SESSION[name]);  
        }}
    $event = new Json;
    $event->getApp();

1 个答案:

答案 0 :(得分:0)

确实使用

启动了会话

session_start()

你需要在这里添加更多代码,否则很难提供帮助