<?php
$num1 = $_REQUEST['num1'] ;
$num2 = $_REQUEST['num2'] ;
$tot = $num1 + $num2 ;
echo "Total is ".$tot ;
?>
<html>
<body>
<form method="post" action="test.php" >
<label>#1</label>
<input type="text" name="num1" />
<label>#2</label>
<input type="text" name="num2" />
<input type="submit" value="Add" />
</form>
</html>
我有這個php。我試圖做的是,只要我進入提交按鈕,結果應該是一個JSON響應。或者通過網址進行回覆。我是json響應的新手。如何創建一個簡單的json響應
這可能嗎?請幫忙。
http://zendguru.wordpress.com/2009/05/04/php-creating-json-response-a-real-world-example/ –
http://www.happycode.info/php-json-response/ –
http://stackoverflow.com/q/9463004/2439156 –