티스토리 뷰
test.php
< ?
$test_value = $_REQUEST['testValue'];
$resultarray['result'] = $test_value;
echo json_encode($resultarray);
return;
?>
index.php
< !DOCTYPE html>
< html>
< head>
< script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
< script>
$(function() {
var values = $("#EventForm").serialize();
$.ajax({
url: "test.php",
type: "post",
data: values,
dataType: "json",
success: function(serverResponse){
alert(serverResponse.result);
}
});
})
< /script>
< /head>
< body>
< form name="EventForm" id="EventForm">
< input type="hidden" name="testValue" value="test11111111111111111" />
< /form>
< /body>
< /html>
'Language > PHP' 카테고리의 다른 글
Mail (0) | 2015.11.29 |
---|---|
[ MySQL ] mysql_insert_id() / last_insert_id() - RANK 최종값 (0) | 2015.11.29 |
RSS - 사람인 (0) | 2015.11.29 |
페이지 이동 (0) | 2015.11.29 |
oracle 연동 방법 (0) | 2015.11.29 |