1
我儘量湊這個網站的數據: http://ntthnue.edu.vn/tracuudiem刮網站使用javascript使用捲曲
首先,當我插入SBD字段數據「TS4740」,我能順利拿到結果。然而,當我嘗試運行這段代碼:
這是我的PHP代碼捲曲:
<?php
function getData($id) {
$url = 'http://ntthnue.edu.vn/tracuudiem';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, ['sbd' => $id]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
echo getData('TS4740');
我剛剛得到了舊的網頁。有人可以解釋爲什麼嗎?謝謝!
它不工作。我認爲這個問題是關於javascript – pexea12
我有一個'郵差'測試工作。我已經更新了我的答案。確保你通過表單中的所有輸入。 – user2479930
添加了一個工作示例 – user2479930