私はjQuery、Ajaxなどすべてが初めてで、htmlファイルの値をphpファイルに渡す方法がわかりません。
例:私のhtmlファイル
<html>
<script>
$(document).ready(function(){
$(".teachers_but").click(function(){
//alert('teacher');
var id=0;
alert(id);
});
$(".students_but").click(function(){
//alert('student');
var id=1;
});
});
</script>
<div class="teachers_but"><a href="join.php">TEACHER SIGNUP</a></div>
<div class="students_but" style="text-align: center; margin-top: 8px;"><a href="signup.php">STUDENT SIGNUP</a></div>
</html>
html ファイルの id 値を php ファイルに渡し、その値に Cookie を設定する方法。