Tugas 9
Membuat Website CRUD dengan Codeigniter Pada tugas kali ini saya membuat website menggunakan codeigniter 4. Code Editor yang saya gunakan adalah Visual Studio Code, dan saya host web secara local menggunakan XAMPP. Langkah-langkah : 1. Download dan install XAMPP di komputer anda 2. Install codeigniter pada folder htdocs di folder xampp 3. Pada folder project yang dibuat, buka file app/config/Routes.php. Tambahkan codes berikut: $routes -> get ( '/' , 'Home::index' ); $routes -> group ( 'admin' , function ( $routes ){ $routes -> get ( 'mahasiswa' , 'mhs::index' ); $routes -> get ( 'mahasiswa/(:segment)/preview' , 'mhs::preview/$1' ); $routes -> add ( 'mahasiswa/new' , 'mhs::create' ); $routes -> add ( 'mahasiswa/(:segment)/edit' , 'mhs::edit/$1' ); $routes -> get ( 'mahasiswa/(...