-
Notifications
You must be signed in to change notification settings - Fork 0
/
hi.php
53 lines (42 loc) · 1003 Bytes
/
hi.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
$idg = $_POST['eid'];
$ids = $_POST['id'];
/*if($_POST['sub']){
$check = $_POST['check'];
foreach($check as $ch)
{
echo $ch."<br>";
}
}*/
//echo $ids;
//echo $idg;
?>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/jquery.cookies.js"></script>
</head>
<body>
<input type="hidden" value="<?php echo $idg; ?>" id="idt">
<input type="hidden" value="<?php echo $ids; ?>" id="idf">
<script>
$(document).ready(function(){
var id = $('#idt').val();
//alert(id);
var eid = $('#idf').val();
//alert(eid);
var dataString='id='+ id + '&eid='+eid;
$.ajax({
type: "POST",
url: "ajax.php",
data: dataString ,
success: function (result) {
location='manage-lms.php?msg=Lead Assigned';
}
});
});
</script>
</body>
</html>