PHP session variable undefined

后端 未结 3 1842
清酒与你
清酒与你 2021-01-27 13:26

I have this session variable which i am trying to set to an access level when the users logs in with this:

 $accessquery = mysql_query(\"SELECT roleid FROM perso         


        
3条回答
  •  清酒与你
    2021-01-27 13:43

    To figure out what's going on, I recommend you to use

    print_r($any_variable);
    

    See http://php.net/print_r

提交回复
热议问题