currently have this code activated by a html button:
JavaScript
x
7
1
function popup() {
2
var group = prompt("Please enter group name");
3
if (group != null || group != "") {
4
window.location.href = "template.php?groupid=" + group; //groupid
5
}
6
}
7
i wanna send the value of group in a sql query in some way, so it can creaty a unique id and use that as my groupid. i think i have to use ajax, but im unable to find a tutorial for this.
Advertisement
Answer
- Add jquery.js reference (e.g. jquery-1.10.2.js)
- use ajax in place of your original call to template.php
JavaScript
1
27
27
1
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
2
<script>
3
4
function popup() {
5
var group = prompt("Please enter group name");
6
if (group != null || group != "") {
7
8
// window.location.href = "template.php?groupid=" + group; //groupid
9
10
11
$.ajax({
12
type: "POST",
13
dataType: 'text',
14
url: "template.php?groupid" + group,
15
success: function(response){
16
//if request if made successfully then the response represent the data
17
// do something after the ajax is done. e.g. alert(response)
18
//the response can be your groupid which the template.php echo execution
19
20
}
21
});
22
23
}
24
}
25
26
</script>
27
For example in your template.php:
JavaScript
1
8
1
<?php
2
// include "db.php";
3
/// process the groupid=group
4
//// further processing to generate the unique $groupid
5
6
echo $groupid;
7
?>
8