語法 | int update(string $query, array $bindings = array()) |
---|---|
引數 |
|
返回值 | int |
描述 |
在資料庫上執行一個更新語句
|
php artisan make:controller StudUpdateController
第3步 - 將以下程式碼複製到檔案 - app/Http/Controllers/StudUpdateController.php
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use DB; use App\Http\Requests; use App\Http\Controllers\Controller; class StudUpdateController extends Controller { public function index(){ $users = DB::select('select * from student'); return view('stud_edit_view',['users'=>$users]); } public function show($id) { $users = DB::select('select * from student where id = ?',[$id]); return view('stud_update',['users'=>$users]); } public function edit(Request $request,$id) { $name = $request->input('stud_name'); DB::update('update student set name = ? where id = ?',[$name,$id]); echo "更新記錄成功.<br/>"; echo '<a href = "/edit-records">點選這裡</a> 返回'; } }
resources/views/stud_edit_view.blade.php
<html> <head> <title>檢視學生記錄</title> </head> <body> <table border = "1"> <tr> <td>ID</td> <td>Name</td> <td>Edit</td> </tr> @foreach ($users as $user) <tr> <td>{{ $user->id }}</td> <td>{{ $user->name }}</td> <td><a href = 'edit/{{ $user->id }}'>編輯</a></td> </tr> @endforeach </table> </body> </html>
resources/views/stud_update.php
<html> <head> <title>編輯 | 學生管理</title> </head> <body> <form action = "/edit/<?php echo $users[0]->id; ?>" method = "post"> <input type = "hidden" name = "_token" value = "<?php echo csrf_token(); ?>"> <table> <tr> <td>名字</td> <td> <input type = 'text' name = 'stud_name' value = '<?php echo$users[0]->name; ?>'/> </td> </tr> <tr> <td colspan = '2'> <input type = 'submit' value = "更新學生資訊" /> </td> </tr> </table> </form> </body> </html>
app/Http/routes.php
Route::get('edit-records','StudUpdateController@index'); Route::get('edit/{id}','StudUpdateController@show'); Route::post('edit/{id}','StudUpdateController@edit');
http://localhost:8000/edit-records