Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この行を変更
<body id="<?php echo $_COOKIE["theme"]; ?>">
これに
<body id="<?php echo $theme; ?>">
この
if ($_COOKIE["theme"]=="light")
if ($theme=="light")
問題は、現在のページの読み込みで Cookie を設定すると、次のページの読み込みまで利用できないことです。したがって、リフレッシュすると機能するように見えるのはなぜですか。