Jquery ajax – Set session variable without reloading the page
I send a value to a php file with AJAX. I am having this function in jQuery: // Service select change $container.on('change', '.bookly-js-select-service', function() { var gekozen_behandeling = this.value; $.ajax({ type: 'POST', url: '/behandeling.php', data: { behandeling_nieuw: gekozen_behandeling }, dataType:…