0
我嘗試使PUT請求,但我不能。我的表格。Codeigniter PUT請求
<form method="put" action="http://localhost/index.php/book">
<input type="text" name="bookName" />
<input type="submit" value="Send"/>
</form>
我控制器
<?php
require(APPPATH.'libraries/REST_Controller.php');
class Book extends REST_Controller {
function index_put(){
echo $this->put('bookName');
}
}
?>
的問題是,不顯示任何東西。