我试图将一个 json 数组发送到一个 php post 请求。
$myarray[] = 500;
$myarray[] = "hello world";
如何将 $myarray json 数据发送到 php 发布请求?
这是我尝试过的:
<form name="input" action="post.php">
<input type="hidden" name="json" value="[500,'hello world']" />
<input type="submit" value="Submit">
</form>
我正在测试 API 并被告知它只需要 json 数据......但我似乎无法让它工作。我的猜测是我错误地发送了 json 数据。有什么想法吗?