01.
<?php
02.
if
(isset(
$_POST
[
'vals'
])){
03.
04.
exit
(
$_POST
[
'vals'
]);
05.
}
06.
?>
07.
<html>
08.
<head>
09.
<script src=
"jquery-3.2.1.min.js"
></script>
10.
<script>
11.
$(document).ready(
function
(){
12.
$.ajax({
13.
type:
"POST"
,
14.
url:
'ls2.php'
,
15.
data: {vals:
'13'
}
16.
}).done(
function
(msg){
17.
18.
$(
'#test'
).html(msg);
19.
});
20.
});
21.
</script>
22.
</head>
23.
<body>
24.
<div id=
"test"
></div>
25.
</body>
26.
</html>