Added echo

This commit is contained in:
neerholt
2021-03-22 09:42:17 +01:00
parent 171e0a3765
commit da17b17fd9
7 changed files with 34 additions and 13 deletions
+21
View File
@@ -1,8 +1,10 @@
/*
$(window).on("load", function(){
dataFetch();
});
function dataFetch(){
$.ajax({
type: "GET",
@@ -12,6 +14,25 @@ function dataFetch(){
}
});
}
*/
$("#qweLog").click(function(){
var vgroupName = $("#groupName").val();
var vpassword = $("#groupPassword").val();
$.post("/Game-Jaming/Backend/Controllers/Group/Login.php",
{
login: "data",
groupName: vgroupName,
password: vpassword
},
function(data){
alert("Data: " + data);
});
});