Сохранение темы на сайте через куки/сессию

Смена тем реализована так: head.php:

<link rel="stylesheet" href="/css/style.css" id="shtylesheet">
<script type="text/javascript">
    function changeStylesheet(newstylesheet){
document.getElementById('shtylesheet').setAttribute('href', newstylesheet);
}

</script>

А в index.php имеется 2 кнопки:

`<div class="change-theme fh5co-sub-ddown"style="margin-top: 10px;margin-right: 20px; border-radius: 20px; padding-top: 2px;">
                                    <i class="icon-sun theme_l" onclick="changeStylesheet('./css/light.css')" style="margin-right: 7px; padding-left: 5px;"></i
                                        ><i class="icon-cog"></i
                                    ><i class="icon-moon theme_d" onclick="changeStylesheet('./css/style.css')" style="margin-left: 7px; padding-right: 5px;"></i>
                                </div>`

Нужно сохранять выбранную тему в куки/сессию. Заранее всех благодарю


Ответы (0 шт):