我学习php和html的时间不长。 最近我试图使用开放API检索书籍信息,但我很难弄清楚因为我不习惯json等。 这是我的来源。我很困惑为什么这不起作用。我想得到一些帮助。提前谢谢。
<?php
$ISBN = _POST['barcode'];
$post_data = array(
"page" => 1,
"search_field1" => "ISBN",
"value1" => "$ISBN",
"maxCount" => 1,
"per_page" => 1,
"collection_set" => 1
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://nl.go.kr/kolisnet/openApi/open.php");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_exec($ch);
print_r($ch);
?>
<!DOCTYPE html>
<html>
<head>
<title>barcode</title>
</head>
<body>
<form action="barcode.php" method="post">
<input type="text" name="barcode" ">
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>