Hello I would like to send by post with the following code, two variables I can only send one, any suggestions? Thanks
<script type="text/javascript">
$(document).ready(function() {
$("#au").change(function() {
$.ajax({
url: "post.php",
type: "POST",
data: "aula=" + $("#au").val(),
success: function(opciones) {
$("#hst").html(opciones);
}
})
});
});
</script>