我正在尝试将会话变量传递给 javascript,但没有成功。搜索stackoverflow我发现了这个讨论: Passing Session variables to javascript
在我的 custom.js 中,我有标题
<?php session_start(); ?>
.. /// js code
strActionPage = CurrentPath + "upload_file.php?ation=store&session_user_id=<?php echo $_SESSION['session_user_id']; ?> "; //the ActionPage's file path
但我无法从 upload_file.php 页面获取会话变量
我哪里错了?
谢谢大家