ここでアヤックスとの最初の遠出。単一のチェックボックスの値をキャプチャしようとしています。チェックされている場合は、PHP $_SESSION 変数を true に設定します。
HTMLにはこれがあります。
<input type="checkbox" name="agree" id="agree"/>
and the js is this....not sure what to put in the AJAX data params??
$(document).ready(function() {
$('#agree').click(function(){
$.ajax({
url: 'agree.php',
type: 'GET',
data: { agreement:"checked" } //NOT Sure ABout this??
});
})
});
およびPHP、おそらく動作していないため、疑似コード..
if($_GET['agreement'] == 'checked') {
$_SESSION['hm-agreement'] = true;
} else {
$_SESSION['hm-agreement'] = false;
}