私の php セッションは Google Chrome でしか動作しません。それらが表示されない他のすべてのブラウザ。誰かが理由を知っていますか?最初のページのコードは次のとおりです...
<?php
// this starts the session
session_start();
// this sets variables in the session
$_SESSION['color']='red';
$_SESSION['size']='small';
$_SESSION['shape']='round';
print "Done";
?>
これが2ページ目の私のコードです...
<?php
// this starts the session
session_start();
// echo variable from the session, we set this on our other page
echo "Our color value is ".$_SESSION['color'];
echo "Our size value is ".$_SESSION['size'];
echo "Our shape value is ".$_SESSION['shape'];
?>
2 ページ目では、Chrome 以外のブラウザではセッション変数が表示されません。これを修正する方法を知っている人はいますか?