抱歉的問題,有一些例子,但我不明白。我的代碼不起作用。我的test.php文件:
<?php
session_start();
?><!DOCTYPE html>
<html>
<body>
<button onclick="doTheFunction();">Run the script</button>
<script>
function doTheFunction(){
xmlhttp = new XMLHttpRequest();
xmlhttp.open("POST","set.php",true);
xmlhttp.send();
}
</script>
<?php echo $_SESSION['w'];?> /*after button onclick and page refresh session
shoud be set*/
</body>
</html>
我set.php文件:
<?php
session_start();
$_SESSION['w'] = 'abc';
?>
會話沒有設置:/
歡迎來到stackoverflow.com。請花些時間閱讀[幫助頁面](http://stackoverflow.com/help),尤其是名爲「[我可以在這裏詢問什麼主題?](http://stackoverflow.com/help/on -topic)「和」[我應該避免詢問什麼類型的問題?](http://stackoverflow.com/help/dont-ask)「。也請[參觀](http://stackoverflow.com/tour)並閱讀[如何提出好問題](http://stackoverflow.com/help/how-to-ask)。最後,請學習如何創建[最小,完整和可驗證示例](http://stackoverflow.com/help/mcve)。 – ArturFH