I am learning angularJS and I want to know how can I send multiple data variables through Angular AJAX like I could do with Jquery?
This is how I did it with Jquery:
$.post("eventCreate.php",
{
daySelect: daySelect,
startTime: startTime,
endTime: endTime,
eventName: eventName,
loginName: "<?php echo $user; ?>",
sliderName: sliderName
},
function(result)
{
;
});
So how do I do this with Angularjs? Is it possible?